Jakub Šťastný
Results
1
comments of
Jakub Šťastný
```clojure (defprotocol Version (stringify [this] "Get string representation")) (deftype QID [a b c d] Version (stringify [_] "test")) (defmethod print-method QID [object out] (.write out (stringify object))) (println "HERE") (printin...