RosettaCodeData/Task/Copy-a-string/Lua/copy-a-string.lua

5 lines
60 B
Lua

a = "string"
b = a
print(a == b) -->true
print(b) -->string