Skip to content

Instantly share code, notes, and snippets.

@skatenerd
Created January 8, 2014 04:43
Show Gist options
  • Save skatenerd/8311934 to your computer and use it in GitHub Desktop.
Save skatenerd/8311934 to your computer and use it in GitHub Desktop.
what will happen?
(defn square [x] (* x x))
(defprotocol Squarable (square [this]))
(defrecord SquareRoot [x]
Squarable
(square [this] x))
(square 4)
(square SquareRoot. 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment