Skip to content

Instantly share code, notes, and snippets.

@renanreismartins
Created October 27, 2014 05:14
Show Gist options
  • Save renanreismartins/33a5f9b791481402e514 to your computer and use it in GitHub Desktop.
Save renanreismartins/33a5f9b791481402e514 to your computer and use it in GitHub Desktop.
(defn x [map key]
(conj map {key (count map)}))
(defn rec [f numbers acc]
(if (empty? numbers)
acc
(recur f (rest numbers) (f acc (first numbers)))))
(prn (rec x [:a :b :c] {} ))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment