Skip to content

Instantly share code, notes, and snippets.

@timsgardner
Created September 3, 2015 20:41
Show Gist options
  • Select an option

  • Save timsgardner/4eaff6d9c77b7df2b443 to your computer and use it in GitHub Desktop.

Select an option

Save timsgardner/4eaff6d9c77b7df2b443 to your computer and use it in GitHub Desktop.
fun reify exasmple!
(defprotocol ISack
(whats-in-me [this]))
(defn potato-sack [the-potatos]
(reify ISack
(whats-in-me [_] the-potatos)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment