Advertisement
Guest User

Broken deftype

a guest
Dec 28th, 2010
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lisp 0.18 KB | None | 0 0
  1. (deftype X []
  2.   Object
  3.   (toString [this]
  4.     (str "(instance? X this) -> " (instance? X this))))
  5.  
  6. (clojure-version)
  7. ; -> "1.2.0"
  8.  
  9. (str (X.))
  10. ; -> "(instance? X this) -> false"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement