我写了一个小名称空间,以开展一些数据库业务,我想从另一个名称空间使用。 通常把档案放在同一目录中,然后做
(ns program (:require [other-ns :as other]) (:gen-class))
这些都是必要的。 然而,在Clojure CLR,编辑者抱怨不知道其他人。 因此,这样做的适当方法是什么? 每一名称空间都有适当组合?
另一实例
页: 1
(ns another)
(defn hello [name] (str "Hello " name))
方案
(ns program
(:require [another :as a])
(:gen-class))
I load up 方案 in the repl and get this message:
FileNotFoundException Could not locate 页: 1.dll or 页: 1 on load path. clojure.lang.RT.load (d:workclojure-clrClojureClojureLibRT.cs:3068)