Well, Symbols implement the IFn and if you look at the invoke method, the
arg passed to it is considered to be a map (I guess more like an
environment it expects in which it will try to look for the symbol)
Anyways, since you've passed in a number, the look up in RT.getFrom leads
to a null henc
I want to write a macro
(defmacro params [] 'a 'b 'c)
that will be used in places like this
;; without macro
(fnc a b c)
;; with macro
(fnc pararms) => (fnc a b c)
If you see this could be easily done by C's #define which was just a text
replacement
--
You received this messa
Thanks. This is very helpful. I successfully built an example Clojure
service on GAE last week working
from http://flowa.fi/blog/2014/04/25/clojure-gae-howto.html?lang=en .
Looking forward to reading through your examples.
Cheers,
Nicholas
On Sunday, August 30, 2015 at 4:49:43 AM UTC+10, Gregg