summaryrefslogtreecommitdiff
path: root/scripts/repl.clj
diff options
context:
space:
mode:
authorLLLL Colonq <llll@colonq>2026-04-26 22:23:19 -0400
committerLLLL Colonq <llll@colonq>2026-04-26 22:23:19 -0400
commit1c7a93144ae794b0f81039c38cc4a7a969230925 (patch)
treea2edf372e22f0656a62eb43deb4451a09245875f /scripts/repl.clj
Initial commitHEADmaster
Diffstat (limited to 'scripts/repl.clj')
-rw-r--r--scripts/repl.clj6
1 files changed, 6 insertions, 0 deletions
diff --git a/scripts/repl.clj b/scripts/repl.clj
new file mode 100644
index 0000000..31f9518
--- /dev/null
+++ b/scripts/repl.clj
@@ -0,0 +1,6 @@
+(ns scripts.repl
+ (:require clojure.main nrepl.server cider.nrepl))
+(defn -main []
+ (nrepl.server/start-server :port 7888 :handler cider.nrepl/cider-nrepl-handler)
+ (println "nREPL server started on port 7888")
+ (clojure.main/repl))