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


print

print(obj [,nl])
:: obj を表示する.
return
0
obj
任意
nl
フラグ (任意)
[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.