Skip to content

Instantly share code, notes, and snippets.

@pjstadig
Forked from jwinter/*slime-repl clojure*
Created March 27, 2009 19:33
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 pjstadig/86844 to your computer and use it in GitHub Desktop.
Save pjstadig/86844 to your computer and use it in GitHub Desktop.
(defn when-its-one []
(loop []
(if (= 1 (rand-int 2000))
1
(do
(println "foo")
(recur)))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment