In Clojure, this works:
(defmethod clojure.pprint/simple-dispatch
my.ns.record
[r] (print r))
But I can't find the equivalent in Cljs. With no success, I've tried:
(defmethod cljs.pprint/simple-dispatch
my.ns.record
[r] (print r))
I can't make any sense of the cljs.pprint documentation