This file contains 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
;; Abstractions with multimethods, protocols, records | |
;; multimethods | |
;; useful for overloading based on dispatching | |
;; vnice | |
(ns ware-creatures) | |
(defmulti full-moon-behavior (fn [were-creature] (:were-type were-creature))) | |
;; Typical multimethods look like so... | |
(defmethod full-moon-behavior :wolf ;; dispatching value is a keyword |