Appearance
平方根を返す
math.sqrt (x)
x の平方根を返します。
x
local x = 16 print(math.sqrt(x)) -- 4
この例では、16の平方根を計算しています。
16
math.pow