You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*print-fn* controls printing in CLJS. with-out-str build on that (#31). This brings up the question if we should have dynamic vars that you can set! and use with binding or if we want to deviate from CLJS here. *print-fn* could also just be an atom.
The text was updated successfully, but these errors were encountered:
Thought about it some more: this won't work with changing the module over time, it will only work for things that were already defined in the module, but you can't add extra stuff to the module.
So the .dev.js output should maybe just use global nested objects as modules (can always mutate and add stuff) and the .js (production output) should just be the finalized es6 output
*print-fn*
controls printing in CLJS.with-out-str
build on that (#31). This brings up the question if we should have dynamic vars that you canset!
and use withbinding
or if we want to deviate from CLJS here.*print-fn*
could also just be an atom.The text was updated successfully, but these errors were encountered: