I have this function that takes a collection of functions as parameters:
(defn- main-func
[fn-list]
...)
I usually call it like this:
(main-func [f1 f2 ...])
But f1 and f2 are all no-arg functions. How can I include a function with parameters in this call?
I searched Google but with no success. Thanks
#(foo 1 2 3 4). Is yourmain-funcusing thefn-listfor their side-effects?