aboutsummaryrefslogtreecommitdiff
path: root/spec/outputs/unless_else.lua
blob: c85d4bf5b4846a191889e7c6a8c8cab72ce2773f (plain)
1
2
3
4
5
6
7
if a then
	if not b then
		return print("hi")
	elseif c then
		return print("not hi")
	end
end