How to say big numbers in English: Common Lisp
September 12, 2007When i was describing notations and representation of numbers in Erlang(and Python) i forgot to mention very cool feature of format function in Common Lisp, with which i got acquainted exploring highly-recommended Practical Common Lisp book.
This feature is ~R directive which knows how to say really big numbers in English words.
Here is the example (I use SBCL + SLIME):
CL-USER> (format nil “~R” 1604872898756737459538) “one sextillion six hundred four quintillion eight hundred seventy-two quadrillion eight hundred ninety-eight trillion seven hundred fifty-six billion seven hundred thirty-seven million four hundred fifty-nine thousand five hundred thirty-eight”
Posted by Ruslan Spivak