fennel-cljlib
fennel-cljlib copied to clipboard
question: make/use as part of the global namespace?
Is it possible to make the lib(or at least macros) part of fennel global namespace? smth like:
fennel --some-magic-option cljlib my-file.fnl
where my-file.fnl:
(ns my-file)
(defn non-nils [coll]
(filter some? coll))
Thanks for your work!