Data commit

This commit is contained in:
Ingy döt Net 2023-07-01 11:58:00 -04:00
parent 7387c8f97b
commit cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions

View file

@ -0,0 +1 @@
CHAR charx = "z";

View file

@ -0,0 +1,6 @@
INT pages=100, lines=25, characters=80;
FILE bookf; FLEX[pages]FLEX[lines]FLEX[characters]CHAR book;
associate(bookf, book);
# following putf inserts the string " Line 4 indented 5" on page 3 #
putf(bookf, $3p"Page 3"4l5x"Line 4 indented 5"$)

View file

@ -0,0 +1,3 @@
[]CHAR charxyz = "xyz";
STRING stringxyz = "xyz";
FORMAT twonewlines = $ll$, threenewpages=$ppp$, fourbackspaces=$bbbb$;

View file

@ -0,0 +1,2 @@
.PR QUOTE .PR
[]'CHAR' CHARXYZ = "XYZ";

View file

@ -0,0 +1 @@
MODE STRING = FLEX[1:0]CHAR;

View file

@ -0,0 +1 @@
BYTES bytesabc = bytes pack("abc");

View file

@ -0,0 +1 @@
STRING stringquote = """I'll be back."" - The Terminator";

View file

@ -0,0 +1,3 @@
STRING linexyz := "line X;" +
"line Y;" +
"line Z;";

View file

@ -0,0 +1,2 @@
FILE linef; STRING line;
associate(linef, line);

View file

@ -0,0 +1,3 @@
FORMAT my_symbol = $"SYMBOL"$;
FORMAT foo = $"prefix_"f(my_symbol)"_suffix"$;
putf(linef ,foo);