8 lines
370 B
Factor
8 lines
370 B
Factor
USING: help.markup help.syntax math strings ;
|
|
IN: math.text.english
|
|
|
|
HELP: number>text
|
|
{ $values { "n" integer } { "str" string } }
|
|
{ $description "Converts an integer to a text string representation in English, including appropriate punctuation and conjunctions." }
|
|
{ $examples { $example "12345 number>text ." "\"Twelve Thousand, Three Hundred and Forty-Five\"" } } ;
|