clojurescript

ClojureScript, a dialect of Clojure that compiles to JavaScript http://clojurescript.org | Currently at 1.10.879
zackteo 2021-06-12T06:47:02.190900Z

Do yall use the chromium inspector? I'm not sure why cljs devtools has loaded but I can't input clojurescript expressions like (+ 1 1) there. My repl connect in emacs does work however

thheller 2021-06-12T07:11:41.191900Z

@zackteo cljs-devtools is only for displaying values in a nicer way. it does not act as a full REPL or take any kind of input. dirac would be the tool for that.

zackteo 2021-06-12T07:41:03.193800Z

Right! I'll just stick with just cljs-devtools then. What kind of values does cljs-devtools displays in a nicer way actually?

zackteo 2021-06-12T07:41:43.194800Z

When I previous tried Dirac, it took very long to start up - at least with my set up :x

thheller 2021-06-12T07:44:50.195500Z

all cljs values. maps, sets, vectors, seqs, etc

zackteo 2021-06-12T09:11:02.196600Z

Whopps okay, it is working - I just wasn't console.logging the right values