mirror of
https://github.com/leafo/moonscript.git
synced 2024-11-22 02:44:23 +00:00
7 lines
103 B
Lua
7 lines
103 B
Lua
if a then
|
|
if not (b) then
|
|
return print("hi")
|
|
elseif c then
|
|
return print("not hi")
|
|
end
|
|
end |