cljs.pprint/setf

macrosince v0.0-3255Edit
(setf sym new-val)

Source docstring:
Set the value of the field SYM to NEW-VAL
Source code @ clojurescript:src/main/cljs/cljs/pprint.cljc
(defmacro setf
  [sym new-val]
  `(swap! @~'this assoc ~sym ~new-val))