Guest User

Untitled

a guest
Jun 18th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1. (defun yeti-style ()
  2. (prog (len mark)
  3. (setq len 10)
  4. (setq mark 0)
  5. :start
  6. (when (= len mark)
  7. (go :end))
  8.  
  9. (princ "lol")
  10. (incf mark)
  11. (go :start)
  12.  
  13. :end
  14. (princ "done!")))
Add Comment
Please, Sign In to add comment