mirror of
https://github.com/leafo/moonscript.git
synced 2024-12-08 01:54:24 +00:00
26 lines
455 B
Lua
26 lines
455 B
Lua
local a
|
|
a = function()
|
|
do
|
|
local _with_0 = something
|
|
print(_with_0.hello)
|
|
print(hi)
|
|
print("world")
|
|
return _with_0
|
|
end
|
|
end
|
|
do
|
|
local _with_0 = leaf
|
|
_with_0.world()
|
|
_with_0.world(1, 2, 3)
|
|
local g = _with_0.what.is.this
|
|
_with_0.hi(1, 2, 3)
|
|
_with_0:hi(1, 2).world(2323)
|
|
_with_0:hi("yeah", "man")
|
|
_with_0.world = 200
|
|
end
|
|
local zyzyzy
|
|
do
|
|
local _with_0 = something
|
|
_with_0.set_state("hello world")
|
|
zyzyzy = _with_0
|
|
end |