Skip to content

Instantly share code, notes, and snippets.

@priort
Created December 30, 2018 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save priort/95553947880de2ad484c2b244c7d8645 to your computer and use it in GitHub Desktop.
Save priort/95553947880de2ad484c2b244c7d8645 to your computer and use it in GitHub Desktop.
(deftest jazz-band-closure-creates-musician-with-access-to-band-set-list
(testing
(is (= ["Donna Lee" "Dig"] ((jazz-band-that-creates-musician ["Donna Lee" "Dig"]))))))
(defn jazz-band-that-creates-musician [set-list] (fn [] set-list))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment