4 lines
78 B
Text
4 lines
78 B
Text
local(x = 'Hello')
|
|
local(y = #x + ', World!')
|
|
#x // Hello
|
|
#y // Hello, World!
|