Skip to content

Instantly share code, notes, and snippets.

@wmacgyver
Created July 11, 2010 22:05
Show Gist options
  • Save wmacgyver/471887 to your computer and use it in GitHub Desktop.
Save wmacgyver/471887 to your computer and use it in GitHub Desktop.
(defmulti the-klass #(= % "ujihisa"))
(defmethod the-klass true [x] "my name is ujihisa")
(defmethod the-klass false [x] "this is a pen")
(println (the-klass (first *command-line-args*)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment