|  |  7.10.6.10 ncratPrint Procedure from libraryncrat.lib(see  ncrat_lib).
 
Example:Usage:
ncratPrint(f);
f of type ncrat
 
Return:
prints f
Note:
print(f);
yields the same result as
 ncratPrint(f);
 
 |  | LIB "ncrat.lib";
ncInit(list("x", "y", "z"));
ncrat f = ncratFromString("2*x*y");
ncratPrint(f);
==> 2*x*y
print(f);
==> 2*x*y
 | 
 
 |