如何在 LightTable 中使用 Clojure 中的库
How to use libraries in Clojure in LightTable
我在 LightTable 中有以下 Clojure 代码
(ns exercise
(:require [clojure.string :as str]))
(defn -main
[& args]
(def str1 "Hello world")
(str/includes? str1 "world")
)
当我尝试 运行 时,出现以下异常:
clojure.lang.Compiler$CompilerException: java.lang.RuntimeException: No such var: str/includes?
我是导入库错误还是其他什么地方出错了?
您可能使用的是旧的 Clojure 版本。 includes?
was added in 1.8.
我在 LightTable 中有以下 Clojure 代码
(ns exercise
(:require [clojure.string :as str]))
(defn -main
[& args]
(def str1 "Hello world")
(str/includes? str1 "world")
)
当我尝试 运行 时,出现以下异常:
clojure.lang.Compiler$CompilerException: java.lang.RuntimeException: No such var: str/includes?
我是导入库错误还是其他什么地方出错了?
您可能使用的是旧的 Clojure 版本。 includes?
was added in 1.8.