1. 程式人生 > >lua 5 流程控制 if

lua 5 流程控制 if

條件判斷中,0 表示 true,只有 nil 才是 false

if(0) then -- 可以沒有括號
    print("0 為 true")
elseif 1 then
    print("1")
else
    print("else")
end

  

 參考:

http://www.runoob.com/lua/lua-decision-making.html