Created
November 11, 2010 16:42
-
-
Save abutcher/672764 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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