RosettaCodeData/Task/Pointers-and-references/ALGOL-68/pointers-and-references-11.alg
Ingy döt Net b83f433714 tasks a-s
2013-04-10 23:57:08 -07: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))