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.
関数内など、必要な場所に「require」を配置する方法はありますか。このようなもの:
(defn fun [x] (do (require 'clojure.string) ('clojure.string/split x #"\s")) )
はい。です。
(defn foo [x] (require 'clojure.string) ((resolve 'clojure-string/split) x #"\s"))