This commit is contained in:
nymphium 2016-03-31 18:38:56 +09:00
parent d8273d5985
commit a841de51ab
2 changed files with 12 additions and 0 deletions

View File

@ -0,0 +1,5 @@
if a
unless b
print "hi"
elseif c
print "not hi"

View File

@ -0,0 +1,7 @@
if a then
if not (b) then
return print("hi")
elseif c then
return print("not hi")
end
end