Skip to content

Instantly share code, notes, and snippets.

@secwang
Created February 5, 2015 15:35
Show Gist options
  • Save secwang/796f161b029949188645 to your computer and use it in GitHub Desktop.
Save secwang/796f161b029949188645 to your computer and use it in GitHub Desktop.
(defprotocol Greet
(sayHello [this]))
(defrecord Person [firstName lastName]
Greet
(sayHello [this] firstName))
(def a (Person. "a" "b"))
(sayHello a)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment