Skip to content

Instantly share code, notes, and snippets.

@siscia
Created July 22, 2012 23:18
Show Gist options
  • Save siscia/3161358 to your computer and use it in GitHub Desktop.
Save siscia/3161358 to your computer and use it in GitHub Desktop.
(deftype Node [name table]
Object
(equals [this other]
(= (:name this) (:name other)))
(hashCode [this]
(.hashCode (:name this))))
;; if i try
(set [(Node. :a "mmm") (Node. :a "bbbb")])
;; I get Evaluation aborted
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment