moonscript/spec/outputs/unless_else.lua
2016-03-31 18:38:56 +09:00

7 lines
103 B
Lua

if a then
if not (b) then
return print("hi")
elseif c then
return print("not hi")
end
end