|  |  D.15.26.7 netInt Procedure from librarynets.lib(see  nets_lib).
 
Example:Usage:
netInt(M); M integer
 
Assume:
M is an integer
Return:
visual presentation of M
Theory:
A Singular object is converted into a character array (a Net) for on screen printing.
 |  | LIB "nets.lib";
ring r;
int M=5;
netInt(M);
==> 5
==> 
 | 
 
 |