Go to the first, previous, next, last section, table of contents.


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


Go to the first, previous, next, last section, table of contents.