babashka

https://github.com/babashka/babashka. Also see #sci, #nbb and #babashka-circleci-builds .
Pradeep B 2021-02-18T16:28:55.029Z

@borkdude are you using babashka for ‘doc string of the day’ ? I was trying the simple clj -e "(doc first)" and it didn’t work 😞

borkdude 2021-02-18T16:30:17.029300Z

@pradeep.bishnoi I am :)

#!/usr/bin/env bb

(require '[clojure.repl])

(defmacro random-doc []
  (let [sym (-> (ns-publics 'clojure.core) keys rand-nth)]
    (if (:doc (meta (resolve sym)))
      `(clojure.repl/doc ~sym)
      `(random-doc))))

(random-doc)

1👀4
Pradeep B 2021-02-18T16:37:29.029600Z

awesome.

Pradeep B 2021-02-18T16:37:47.029800Z

and thanks for passing it.