Handbook
Glossary
roman/i ( x y -- z )
Roman numerals
Prev:
roman* ( x y -- z )
Next:
roman/mod ( x y -- z w )
Vocabulary
roman
Inputs
x
a
string
y
a
string
Outputs
z
a
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
USING:
math
roman.private
;
IN:
roman
:
roman/i
( x y -- z )
[
/i
]
binary-roman-op
;