roman/i ( x y -- z )
Roman numerals

Prev:roman* ( x y -- z )
Next:roman/mod ( x y -- z w )


Vocabulary
roman

Inputs
xa string
ya string


Outputs
za string


Word description
Computes the integer division of two Roman numerals.

Examples
USING: io roman ; "v" "iv" roman/i print
i


See also
roman*, roman/mod

Definition