RosettaCodeData/Task/Pointers-and-references/ALGOL-68/pointers-and-references-11.alg
2023-07-01 13:44:08 -04:00

4 lines
133 B
Text

[30]CHAR hay stack := "straw straw needle straw straw";
REF[]CHAR needle = hay stack[13:18];
needle[2:3] := "oo";
print((hay stack))