roman> ( str -- n )
Roman numerals

Prev:>ROMAN ( n -- str )
Next:roman+ ( x y -- z )


Vocabulary
roman

Inputs
stra string


Outputs
nan integer


Word description
Converts a Roman numeral to an integer.

Notes
The range for this word is i-mmmcmxcix, inclusive.

Examples
USING: prettyprint roman ; "lvi" roman> .
56


See also
>roman, >ROMAN

Definition