Skip to content

Instantly share code, notes, and snippets.

@abutcher
Created November 11, 2010 16:42
Show Gist options
  • Select an option

  • Save abutcher/672764 to your computer and use it in GitHub Desktop.

Select an option

Save abutcher/672764 to your computer and use it in GitHub Desktop.
The control string ~R prints integers alphabetically...
CL-USER> (format t "His power level is over ~R!~%" 9000)
His power level is over nine thousand!
NIL
CL-USER> (format t "His power level is over ~R!~%" 382498239489234892348923849234)
His power level is over three hundred eighty-two octillion four hundred ninety-eight septillion two hundred thirty-nine sextillion four hundred eighty-nine quintillion two hundred thirty-four quadrillion eight hundred ninety-two trillion three hundred forty-eight billion nine hundred twenty-three million eight hundred forty-nine thousand two hundred thirty-four!
NIL
CL-USER>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment