|  |  D.15.26.8 netBigInt Procedure from librarynets.lib(see  nets_lib).
 
Example:Usage:
netBigInt(M); M integer
 
Assume:
M is a bigint
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;
bigint M=5;
netBigInt(M);
==> 5
==> 
 | 
 
 |