2007-12-24 00:06:53 -05:00
|
|
|
USING: help.markup help.syntax math strings ;
|
2008-01-06 22:21:58 -05:00
|
|
|
IN: math.text.english
|
2007-12-24 00:06:53 -05:00
|
|
|
|
|
|
|
HELP: number>text
|
|
|
|
{ $values { "n" integer } { "str" string } }
|
|
|
|
{ $description "Converts an integer to a text string representation in English, including appropriate punctuation and conjunctions." }
|
2008-03-11 22:01:39 -04:00
|
|
|
{ $examples { $example "USING: math.text.english prettyprint ;" "12345 number>text ." "\"Twelve Thousand, Three Hundred and Forty-Five\"" } } ;
|