我已经长期使用 nrepl,但这与使用 clojure.main/repl
创建 "子 repl" 的兼容性不佳。我现在使用套接字 repl,非常喜欢这种子 repl 再次可用。我主要只做简单的调用
(clojure.main/repl
:prompt (fn [] (printf "%s=> " (peek (str/split (str *ns*) #"\."))))
:read server/repl-read)
人们还用子 repl 做了些什么?创建评估历史文件?将形式投入数据库?非常想了解。