Templating, how to?

2012-01-09 Thread Linus Ericsson
I want to generate rules with constant and/or functions producing parts of the rules: (defn rulemaker [] (str SCOPE global-constant ; (some-global-function) ;)) which could be called with (with-super-closure model-in-file-reference (rulemaker)) Is there a way to make some temporary

Re: Templating, how to?

2012-01-09 Thread Cedric Greevey
On Mon, Jan 9, 2012 at 10:36 AM, Linus Ericsson oscarlinuserics...@gmail.com wrote: I want to generate rules with constant and/or functions producing parts of the rules: (defn rulemaker []    (str SCOPE global-constant ; (some-global-function) ;)) which could be called with