0
:require
似乎並沒有在Gorilla工作。我打開了一個新的會話並運行以下命令:爲什麼大猩猩拋出'無法解決符號'錯誤?
(ns pacific-iceberg
(:require [gorilla-plot.core :as plot]))
(defn f [x] (Math/pow x 2))
(plot f [-9 9])
輸出:
An exception was caused by: java.lang.RuntimeException (Unable to resolve symbol: plot in this context)
...
這是怎麼回事?
啊,對。我應該使用'(plot/plot f [-9 9])''。非常感謝!奇蹟般有效! – Zaz