Skip to content

Instantly share code, notes, and snippets.

@manishym
Created December 18, 2011 15:43
Show Gist options
  • Save manishym/1493736 to your computer and use it in GitHub Desktop.
Save manishym/1493736 to your computer and use it in GitHub Desktop.
Normal if and infinitely recursive function
(define (p) (p))
(define (test x)
(if (= x 0)
1
(p)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment