ANNOTATED PROGRAM:
local x : string = "hello"
local y : string = "world"
return x .. y

RAN WITH RESULT: "helloworld"