「Lua入門」if文を使うサンプル

環境
Lua 5.4.4

構文
if 条件 then
処理
end
条件が合致する場合、配下の処理が実行され、if文の処理は終了します。

使用例

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
x = 11
if x == 11 then
print("11")
end
x = 11 if x == 11 then print("11") end
x = 11

if x == 11 then
      print("11") 
end

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

Lua

Posted by arkgame