Guest User

Untitled

a guest
Jan 21st, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. (defprotocol Concatenatable
  2. (cat [this other]))
  3.  
  4. (extend-type String
  5. Concatenatable
  6. (cat [this other]
  7. (.concat this other)))
  8.  
  9. (cat "House" " of Leaves")
Add Comment
Please, Sign In to add comment