Skip to content

Instantly share code, notes, and snippets.

@fadelakin
Created October 19, 2013 17:09
Show Gist options
  • Save fadelakin/7058608 to your computer and use it in GitHub Desktop.
Save fadelakin/7058608 to your computer and use it in GitHub Desktop.
A function that calculates the average of some numbers in Clojure
(defn average
[numbers]
(/ (apply + numbers) (count numbers)))
@Bost
Copy link

Bost commented May 23, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment