1

我正在尝试从 Repl 中使用 algo.generic pow 多功能,以学习 clojure。
如何使用 Repl 中的 algo.generic?

-我正在使用 lein repl。 -在 project.clj -lein deps
中添加 [org.clojure/algo.generic "0.1.1"]

=> (use 'clojure.algo.generic)
=> (pow 5 6)

CompilerException java.lang.RuntimeException: Unable to resolve symbol: pow in this context, compiling:(/tmp/form-init6907113967558511638.clj:1:1)`


谢谢..

4

1 回答 1

2

pow 函数位于 clojure.algo.generic.math-functions 命名空间中,因此您需要“使用”或“要求”该命名空间而不是 clojure.algo.generic

于 2013-09-28T23:09:23.957 回答