剰余(商:割り算の余り)を求める

書式

値1 % 値2
変数 % 変数
変数 % 値

説明

Luaで剰余(商:割り算の余り)を求めるには%記号を使います。

サンプル

#!/usr/local/bin/lua
n = 10 % 4
print(n)