Babashka
https://gyazo.com/71c9f4fb33aa7cfbcbae2db33134cae6
babashka/babashka: A Clojure babushka for the grey areas of Bash (native fast-starting Clojure scripting environment)
babashka/nbb: Ad-hoc CLJS scripting on Node.js using SCI.
Babashka book
$ rlwrap -c -b "(){}[],^%$#@\"\";:''|\\" bb
code:example.clj
#!/usr/bin/env
bb
; -*- mode: clojure; -*-
(println "Hello")
$ ./example.clj
reader conditionals は
#?(:bb 42 :clj 29)
は
42
、
#?(:clj 29 :bb 42)
は
29