RosettaCodeData/Task/String-concatenation/Lua/string-concatenation.lua

5 lines
59 B
Lua

a = "hello "
print(a .. "world")
c = a .. "world"
print(c)