べき乗を求める

書式

値1 ^ 値2
変数 ^ 変数
変数 ^ 値

説明

Luaでべき乗を求めるには^記号を使います。例えば2 ^ 8とすると結果は256になります。

サンプル

#!/usr/local/bin/lua
n = 2 ^ 16
print(n)