RosettaCodeData/Task/Copy-a-string/Zoomscript/copy-a-string.zoom

7 lines
58 B
Plaintext

var a
var b
a = "World"
b = a
a = "Hello"
print (a," ",b)