Skip to content

Instantly share code, notes, and snippets.

@draftcode
Created April 18, 2011 15:18
Show Gist options
  • Select an option

  • Save draftcode/925542 to your computer and use it in GitHub Desktop.

Select an option

Save draftcode/925542 to your computer and use it in GitHub Desktop.
(define-syntax forever
(syntax-rules ()
((_) (forever))))
; (forever) ; don't return ...
(define-syntax a
(syntax-rules ()
((_) (if #t 1 (forever)))))
; (a) ; don't return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment