「Lua入門」if文に論理和(or)を使うサンプル
構文
if 左の条件 or 右の条件
左の条件または右の条件のどちらかがtrueの場合、trueになります。
使用例
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
Coding Changes the World
構文
if 左の条件 or 右の条件
左の条件または右の条件のどちらかがtrueの場合、trueになります。
使用例
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