Created
September 28, 2017 09:43
-
-
Save sidgwick/474e6dd1a97f0ec9ee1de70acf205f5b to your computer and use it in GitHub Desktop.
This file contains 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
(do ((i 1 (+ i 1)) (j 1 (+ j i))) | |
((> i 10) 'done) | |
(format t "square i is ~A~%" (* i i)) | |
(format t "square j is ~A~%" (* j j))) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment