Next: Comparison, Previous: Number Syntax, Up: Numbers
Return
#tif n is an odd integer,#fotherwise.
Return
#tif n is an even integer,#fotherwise.
Return the remainder of the numbers x and y.
(remainder 13 4) ⇒ 1 (remainder -13 4) ⇒ -1
Return the modulo of the numbers x and y.
(modulo 13 4) ⇒ 1 (modulo -13 4) ⇒ 3