mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
9 lines
112 B
Lua
9 lines
112 B
Lua
local a = 'b'
|
|
local c = d;
|
|
(a(b))(c(d))
|
|
c = d.c;
|
|
(a(b))(c(d));
|
|
(c(d))(a(b))
|
|
local b
|
|
a, b = c, d
|
|
return (d(a))(c) |