factor/extra/math/text/english/english-docs.factor

8 lines
411 B
Factor
Raw Normal View History

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." }
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\"" } } ;