[ < ] [ > ]   [ << ] [ Up ] [ >> ]         [Top] [Contents] [Index] [ ? ]

6.11.7 print

print(obj [,nl])
:: Displays (or outputs) obj.

return
0
obj
arbitrary
nl
flag (arbitrary)

 
[8] def cat(L) { while ( L != [] ) { print(car(L),0); L = cdr(L);}
print(""); }
[9] cat([xyz,123,"gahaha"])$
xyz123gahaha



This document was generated by root on March, 5 2004 using texi2html