remainder (mod)
calculates the remainder of a number sequence
Usage:
(mod form+)
Takes a set of numbers and calculates the collective remainder of dividing each by the next.
An Example
(mod 10 3) ;; returns 1
(mod 20 7.0 4) ;; returns 2.0