>roman ( n -- str )
Roman numerals

Prev:ROMAN:
Next:>ROMAN ( n -- str )


Vocabulary
roman

Inputs
nan integer


Outputs
stra string


Word description
Converts a number to its lower-case Roman Numeral equivalent.

Notes
The range for this word is 1-3999, inclusive.

Examples
USING: io roman ; 56 >roman print
lvi


See also
>ROMAN, roman>

Definition