Hello, I would like to make that eval see context of the caller block. In the example:
(defn my-if [a b c] (let [z (name (gensym)) t (symbol (str z "true")) f (symbol (str z "false")) ] (def t (fn[] b)) (def f (fn[] c)) (def mycond (boolean a)) ((eval (symbol (str z mycond)))))) the symbol can't be found in context represented by the eval. What to do to make it working? Thanks, -- You received this message because you are subscribed to the Google Groups "Clojure" group. To post to this group, send email to clojure@googlegroups.com Note that posts from new members are moderated - please be patient with your first post. To unsubscribe from this group, send email to clojure+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/clojure?hl=en