We're sorry but tl-playground doesn't work properly without JavaScript enabled. Please enable it to continue.
basic
enums
generics
maps
records
1
2
3
4
5
local
function
hello
(
greeting
:
string
):
string
return
greeting
..
" world!"
end
hello
(
"reflections on 2020-2021"
)
Enter to Rename, Shift+Enter to Preview
1
2
3
4
5
local
function
hello
(
greeting
)
return
greeting
..
" world!"
end
hello
(
"reflections on 2020-2021"
)
Enter to Rename, Shift+Enter to Preview