1
0
Fork 0
mirror of https://github.com/luau-lang/luau.git synced 2025-04-21 12:13:47 +01:00
luau/prototyping/Tests/Interpreter/concat_two_strings/out.txt
2022-03-02 15:26:58 -08:00

6 lines
118 B
Text

ANNOTATED PROGRAM:
local x : string = "hello"
local y : string = "world"
return x .. y
RAN WITH RESULT: "helloworld"