|  |  7.10.6.9 ncratSPrint Procedure from libraryncrat.lib(see  ncrat_lib).
 
Example:Usage:
string s = ncratSPrint(f);
f of type ncrat
 
Return:
prints f to string
 |  | LIB "ncrat.lib";
ncInit(list("x", "y", "z"));
ncrat f = ncratFromString("2*x*y");
string s = ncratSPrint(f);
print(s);
==> 2*x*y
 | 
 
 |