「Lua入門」if文に論理和(or)を使うサンプル

構文
if 左の条件 or 右の条件
左の条件または右の条件のどちらかがtrueの場合、trueになります。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
x = 12
if x == 9 or x < 10 then
print("123 yes")
else
print("456 no")
end
x = 12 if x == 9 or x < 10 then print("123 yes") else print("456 no") end
x = 12

if x == 9 or x < 10 then
      print("123 yes") 
else
      print("456 no")
end

実行結果
C:\study\lua>lua 11.lua
456 no

Lua

Posted by arkgame