Created
January 7, 2013 00:20
-
-
Save MichaelDrogalis/4471276 to your computer and use it in GitHub Desktop.
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 Fly | |
(fly [this] "Method to fly")) | |
(defn bird-fly [this] | |
(str (:name this) " flies...")) | |
(with-precondition! #'bird-fly | |
:not-crow | |
(fn [this] (not= (:name this) "Crow"))) | |
(defrecord Bird [name species] | |
Fly | |
(fly [this] (bird-fly this))) | |
(def crow (Bird. "Crow" "Corvus corax")) | |
(fly crow) ; => Raises an exception due to precondition violation. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment