File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1166,6 +1166,12 @@ Console Print and Input Statements
11661166 with the value of each character in
11671167 the original string before printing.
11681168
1169+ * Advanced:* When writing abbreviated
1170+ code, you can omit the semicolon in
1171+ almost all places, and just join the
1172+ values together. Avoid doing this in
1173+ common code for better readability.
1174+
11691175
11701176** Writes A Character To Screen**
11711177** PUT _ num_ / PU.**
Original file line number Diff line number Diff line change @@ -83,6 +83,12 @@ exec print1
8383? rtab (4 ) " x" ; rtab (4 ) " yy" ;
8484? " e"
8585
86+ ' Test without separators (extension)
87+ ?1 " -" 2
88+ A =123
89+ ?1A
90+ ?" x" A" y"
91+
8692proc print1
8793 ? " in proc"
8894endproc
Original file line number Diff line number Diff line change @@ -86,3 +86,6 @@ ABCDEFGHI 1234
8686ABCDEFGHI 12345
8787ABCDEFGHI 123456
8888 x yye
89+ 1-2
90+ 1123
91+ x123y
You can’t perform that action at this time.
0 commit comments