Skip to content

Instantly share code, notes, and snippets.

@goloroden
Created April 19, 2015 19:16
Show Gist options
  • Save goloroden/bb3204e721ac5af32c3a to your computer and use it in GitHub Desktop.
Save goloroden/bb3204e721ac5af32c3a to your computer and use it in GitHub Desktop.
Countdown with (do)
(defun launch (n)
(do ((cnt n (- cnt 1)))
((zerop cnt) (format t "Blast off!"))
(format t "~S..." cnt)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment