Skip to content

Instantly share code, notes, and snippets.

@mmower
Created April 1, 2013 20:59
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 mmower/2fb5f8ba95382084b4e5 to your computer and use it in GitHub Desktop.
Save mmower/2fb5f8ba95382084b4e5 to your computer and use it in GitHub Desktop.
(ns test.core)
(println "It's the code, dummy")
;
; (defn fact
; [n]
; ((fn [i acc]
; (if (= 0 n)
; acc
; (recur (dec i) (* i acc)))) n 1))
;
; (println (fact 1))
;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment