I’m working on some stuff with inf-clojure, and I need to be able to invoke a form which ascertain that we’re running a planck-repl.
(require ‘planck.core)
planck.core/*version-version*
works, but it’s a bit too invasive I think
js/PLANCK_VERSION
is what I was looking for.
oh, even better
(js/global.hasOwnProperty “PLANCK_VERSION”)
Seems like Planck is missing "show-arglist" which Lumo has.
Just saying...
Now, thinking about this, it'd be cool if REPLs had some kind of 'capabilities' command, such that tooling could ask for this instead of each tool having to have special code for every repl it supported.