Skip to content

Instantly share code, notes, and snippets.

@amalloy
Created December 30, 2010 01:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amalloy/fcd4dc5f2050e65d998c to your computer and use it in GitHub Desktop.
Save amalloy/fcd4dc5f2050e65d998c to your computer and use it in GitHub Desktop.
((fn f1 [i]
(when (< i 5)
((fn f2 [j]
(when (< j 3)
(print (+ i j))
(f2 (inc j)))
(f1 (inc i)))
i)))
0)
01223444234442344423444nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment