gurus
Here's a question for you: I am working on a clojure program that involves passing functions to functions.
I have something like:
(defn funct-op [args]
((first args)
(second args)
(last args) )
(funct-op '(+ 2 2))
How can I coax funct-op into giving me 4 rather than the 2 I am currently getting? I may need to pass a function to a macro as my project progresses. Any tips on how to do that? Thanks for your help!