How to Extract Clojure REPL History

I wrote the code in a simple REPL console from Clojure ( lein repl ). Now I would like to extract the story to get the code that I wrote there. Can I do it somehow?

+8
clojure read-eval-print-loop
source share
1 answer

Each Leiningen project saves the history of using REPL in a .lein-repl-history file. There is also a global repl-history file located in ~/.lein .

+13
source share

All Articles