moonscript/spec/outputs/unless_else.lua

7 lines
103 B
Lua
Raw Normal View History

2016-03-31 09:38:56 +00:00
if a then
if not (b) then
return print("hi")
elseif c then
return print("not hi")
end
end