Created
September 3, 2015 20:41
-
-
Save timsgardner/4eaff6d9c77b7df2b443 to your computer and use it in GitHub Desktop.
fun reify exasmple!
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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