Eval-eval for Clojure in Pen.el

1 · · March 23, 2022, 11:43 a.m.
Summary This is an exhibit of one mechanism for interactively running Clojure functions with ease from emacs. Similar mechanisms exist for running tests, too, as I will demonstrate. Demo When I want to have on-hand a bunch of Clojure functions I can run at any time, I don’t want to have to add input handlers for the variables. I just want to run it, interactively. 1 2 (defn pen-test-interactive-clj [a b c] (sh "pen-tv" :in a)) Define the key binding:...