8 lines
		
	
	
		
			411 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			8 lines
		
	
	
		
			411 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 "USING: math.text.english prettyprint ;" "12345 number>text ." "\"Twelve Thousand, Three Hundred and Forty-Five\"" } } ;
 |