mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
33 lines
325 B
Lua
33 lines
325 B
Lua
local a
|
|
local a, b, c
|
|
local x = 1212
|
|
local something
|
|
something = function()
|
|
local x
|
|
x = 1212
|
|
end
|
|
do
|
|
local y, z
|
|
y = 2323
|
|
z = 2323
|
|
end
|
|
do
|
|
|
|
print("Nothing Here!")
|
|
end
|
|
do
|
|
local X, Y
|
|
x = 3434
|
|
local y = 3434
|
|
X = 3434
|
|
Y = "yeah"
|
|
end
|
|
do
|
|
|
|
local y
|
|
x, y = "a", "b"
|
|
end
|
|
do
|
|
local x, y
|
|
x, y = "a", "b"
|
|
end |