Re: Why ('f 1) does deliver nil?

2019-10-26 Thread Faiz Ahmed Mushtak Halde
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

Text replacement capability in clojure macros (just like C #define)

2019-02-01 Thread faiz
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

Re: migae: clojure on Google App Engine

2015-09-01 Thread Nicholas Faiz
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