Skip to content

math.huge

無限大を表す定数

lua
math.huge

説明

正の無限大を表す定数です。

サンプルコード

lua
local x = math.huge
print(x)  -- inf

この例では、無限大を表す値を出力しています。

互換性

  • Lua 5.1

関連項目