Skip to content

Instantly share code, notes, and snippets.

@marcofiset
Forked from fadelakin/average.clj
Last active August 29, 2015 14:26
Show Gist options
  • Save marcofiset/acd56b02b059b0b771c7 to your computer and use it in GitHub Desktop.
Save marcofiset/acd56b02b059b0b771c7 to your computer and use it in GitHub Desktop.
A function that calculates the average of some numbers in Clojure
(defn average
[numbers]
(if (empty? numbers)
0
(/ (reduce + numbers) (count numbers))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment