Guest User

Untitled

a guest
Sep 11th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (ns devon.demo)
  2.  
  3. (defprotocol Show
  4.   (show [this]))
  5.  
  6. (extend-protocol Show
  7.    java.lang.String
  8.      (show [this] (println this))
  9.    some-ns.Person
  10.      (show [this] (println this.toString)))
  11.  
  12. (show "Hello") ;console: "Hello", return-val: nil
  13. (show (Person. "Name")) ; console: "Name", return-val: nil
Add Comment
Please, Sign In to add comment