Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法将“要求”放在需要的地方,例如在函数中。像这样的东西:
(defn fun [x] (do (require 'clojure.string) ('clojure.string/split x #"\s")) )
是的。这是。
(defn foo [x] (require 'clojure.string) ((resolve 'clojure-string/split) x #"\s"))