>ROMAN ( n -- str )
Roman numerals

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


Vocabulary
roman

Inputs
nan integer


Outputs
stra string


Word description
Converts a number to its upper-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