Guest User

Untitled

a guest
May 26th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. (in-ns 'user)
  2.  
  3. (defprotocol Path
  4. (path [t]))
  5.  
  6. (def my-obj
  7. (proxy [Object user.Path] []
  8. (path [] 'yay)))
  9.  
  10. (.path my-obj)
  11. => yay
Add Comment
Please, Sign In to add comment