=================================================================== RCS file: /home/cvs/OpenXM/src/asir-doc/parts/builtin/io.texi,v retrieving revision 1.9 retrieving revision 1.11 diff -u -p -r1.9 -r1.11 --- OpenXM/src/asir-doc/parts/builtin/io.texi 2002/09/03 01:50:59 1.9 +++ OpenXM/src/asir-doc/parts/builtin/io.texi 2003/04/20 08:01:28 1.11 @@ -1,4 +1,4 @@ -@comment $OpenXM: OpenXM/src/asir-doc/parts/builtin/io.texi,v 1.8 2002/07/15 01:58:24 takayama Exp $ +@comment $OpenXM: OpenXM/src/asir-doc/parts/builtin/io.texi,v 1.10 2003/04/19 15:44:58 noro Exp $ \BJP @node 入出力,,, 組み込み函数 @section 入出力 @@ -521,13 +521,14 @@ The last 0 will not be printed. ) @item Formatted outputs are not currently supported. If one wishes to output multiple objects by a single @code{print()} command, -use list like @code{[@var{obj1,...}]}, which is not so beautiful, but +use list like @code{[@var{obj1},...]}, which is not so beautiful, but convenient to minimize programming efforts. \E @end itemize @example -[8] def cat(L) @{ while ( L != [] ) @{ print(car(L),0); L = cdr(L);@} print(""); @} +[8] def cat(L) @{ while ( L != [] ) @{ print(car(L),0); L = cdr(L);@} +print(""); @} [9] cat([xyz,123,"gahaha"])$ xyz123gahaha @end example