On Wednesday, August 12, 2015 at 9:34:56 PM UTC-4, g vim wrote: > Great work, Mike. I'm a relative novice so where can I find info about > executing host commands with planck.shell and I/O reader/writer? > > gvim
The strategy is to mimic the existing Clojure namespaces / facilities. Planck has doc support, so something like the following works: (require 'planck.shell) (doc planck.shell/sh) You can also use this trick to have Planck display the source for those namespaces: (println (js/PLANCK_LOAD "planck/shell.cljs")) (println (js/PLANCK_LOAD "planck/io.cljs")) -- Note that posts from new members are moderated - please be patient with your first post. --- You received this message because you are subscribed to the Google Groups "ClojureScript" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/clojurescript.
