RosettaCodeData/Task/Pointers-and-references/ALGOL-68/pointers-and-references-11.alg

4 lines
133 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
[30]CHAR hay stack := "straw straw needle straw straw";
REF[]CHAR needle = hay stack[13:18];
needle[2:3] := "oo";
print((hay stack))