How do I start the REPL in a user defined namespace?

前端 未结 7 1379
傲寒
傲寒 2020-12-06 17:13

Writing (in-ns \'dbx) to a file and loading it isn\'t changing the default namespace of the repl (using cygwin/console). The namespace is still user=><

7条回答
  •  不思量自难忘°
    2020-12-06 18:03

    java -cp .;clojure-1.3.0.jar; clojure.main -e \
    "(ns dbx) (clojure.main/repl) (in-ns 'dbx) (clojure.core/use 'clojure.core)"
    

提交回复
热议问题