Skip to content

Instantly share code, notes, and snippets.

@dandorman
Last active May 2, 2018 14:22
Show Gist options
  • Save dandorman/24f78ca950d9263033535e32b099eb45 to your computer and use it in GitHub Desktop.
Save dandorman/24f78ca950d9263033535e32b099eb45 to your computer and use it in GitHub Desktop.
{:paths ["."]}
(ns multi)
(defmulti foo #(first %&))
(defmethod foo :foo [_] "foo!")
(defmethod foo :bar [_] "bar!")
(defmethod foo :default [_] "huh?")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment