mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
20 lines
311 B
Lua
20 lines
311 B
Lua
local hello = "hello"
|
|
local world = "world"
|
|
local _
|
|
_ = function()
|
|
local hello = 3223
|
|
end
|
|
_ = function(a)
|
|
local hello = 3223
|
|
a = 323
|
|
end
|
|
_ = function(a, b, c)
|
|
a, b, c = 1, 2, 3
|
|
local world = 12321
|
|
end
|
|
return function(a, e, f)
|
|
local b, c
|
|
a, b, c = 1, 2, 3
|
|
hello = 12321
|
|
local world = "yeah"
|
|
end |