RosettaCodeData/Task/Literals-String/ALGOL-68/literals-string-10.alg
2023-07-01 13:44:08 -04:00

6 lines
247 B
Text

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"$)