(defun countdown (x ) ( loop ( print x ) (setq x ( - x 1 ) ) (if (zerop x) (return “lift off" ) ) ) ) COUNTDOWN > (countdown 8) 8 7 6 5 4 3 2 1 "lift off" >