roman/mod ( x y -- z w )
Roman numerals

Prev:roman/i ( x y -- z )


Vocabulary
roman

Inputs
xa string
ya string


Outputs
za string
wa string


Word description
Computes the quotient and remainder of two Roman numerals.

Examples
USING: kernel io prettyprint roman ; "v" "iv" roman/mod [ print ] bi@
i i


See also
roman*, roman/i

Definition