mod
scorefile command -- modulus command
USAGE:
val = mod(p0, p1)
mod
returns the result of the operation
p0 mod p1
(otherwise known as:
p0 % p1
).
mod
converts both params to integers.
See also
wrap
which apparently does the same thing.