luau/prototyping/Tests/Interpreter/concat_two_strings/out.txt

7 lines
118 B
Plaintext
Raw Normal View History

2022-03-02 18:26:58 -05:00
ANNOTATED PROGRAM:
local x : string = "hello"
local y : string = "world"
return x .. y
RAN WITH RESULT: "helloworld"