RosettaCodeData/Task/Copy-a-string/ALGOL-68/copy-a-string.alg
2023-07-01 13:44:08 -04:00

4 lines
45 B
Text

(
STRING src:="Hello", dest;
dest:=src
)