Source of Nothingness - xyzzy lisp : format ~R

* xyzzy lisp : format ~R

(format nil "~10,10,'*,'-,2:R" 12345)
"***1-23-45"
(format nil "~R" 12345)
"twelve thousand, three hundred and forty-five"
(format nil "~:R" 12345)
"twelve thousand, three hundred and forty-fifth"
(format nil "~@R" 1234)
"MCCXXXIV"
(format nil "~:@R" 1234)
"MCCXXXIIII"

update : 2006-10-04 (Wed) 22:28:58