Skip to content

Instantly share code, notes, and snippets.

@cataska
Created October 13, 2018 12:43
Show Gist options
  • Save cataska/c97546efb256584f0e00dc18b517d420 to your computer and use it in GitHub Desktop.
Save cataska/c97546efb256584f0e00dc18b517d420 to your computer and use it in GitHub Desktop.
(def hundred-times (partial * 100))
;; => #'hundred-times
(hundred-times 5)
;; => 500
(def times (partial *))
;; => #'times
(times 1)
;; => 1
(times 1 2 3)
;; => 6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment