1
定製打印方法要自定義記錄打印,我通常添加的打印方法:增加對clojurescript
(defrecord Op [type value]
Object
(toString [op]
(str [type value])))
(defmethod print-method Op
[v w]
(.write w (str v)))
,但是當我在clojurescript我,我得到一個錯誤:
Use of undeclared Var synchrony.operation/print-method at line 11
我該怎麼做cljs?
這個工作真的很好。謝謝! – zcaudate