Skip to content

Instantly share code, notes, and snippets.

@renanreismartins
Created September 9, 2014 22:23
Show Gist options
  • Save renanreismartins/87cb01026f624931c9cd to your computer and use it in GitHub Desktop.
Save renanreismartins/87cb01026f624931c9cd to your computer and use it in GitHub Desktop.
(def square (fn [n] (n * n)))
(def sum (fn [list] (apply + list)))
(def add-square (fn [list] (sum (map square list)) ))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment