Go to the first, previous, next, last section, table of contents.
printprint();
で実行すると, 出力の後に 0 が返される.
print()$ とすれば, 最後の 0 は出力されない.
[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.