Handbook
Glossary
roman* ( x y -- z )
Roman numerals
Prev:
roman- ( x y -- z )
Next:
roman/i ( x y -- z )
Vocabulary
roman
Inputs
x
a
string
y
a
string
Outputs
z
a
string
Word description
Multiplies two Roman numerals.
Examples
USING: io roman ; "ii" "iii" roman* print
vi
See also
roman/i
,
roman/mod
Definition
USING:
math
roman.private
;
IN:
roman
:
roman*
( x y -- z )
[
*
]
binary-roman-op
;