Is it possible to split a Clojure namespace over multiple source files when doing ahead-of-time compilation with :gen-class? How do (:main true) and (defn- ...) come into play?
| |||
|
feedback
|
OverviewCertainly you can, in fact
All these files participate to build up the single Primary FileOne of these is the primary file, named to match the namespace name so that it will be found when someone mentions it in a
Then at appropriate places in your primary file (most commonly all at the end) use
Note that you don't need the current directory as a prefix, nor do you need the Helper filesEach of the helper files should start by declaring which namespace they're helping, but should do so using the
That's all it takes. gen-classBecause all these files are building a single namespace, each function you define can be in any of the primary or helper files. This of course means you can define your
Note that Clojure's normal order-of-definition rules still apply for all functions, so you need to make sure that whatever file defines a function is loaded before you try to use that function. Private VarsYou also asked about the | |||||
feedback
|