In Clojure, if I have a function call that asks for return of a function, for example

user> ((fn [a] (fn [b] (+ (inc a) (* b b)))) 5)

I get the function name

#<user$eval4164$fn__4165$fn__4166 user$eval4164$fn__4165$fn__4166@29770daa>

But what I would like to get is an expression that defines this function, for example

(fn [b] (+ 6 (* b b)))

Is there some way that I can suppress the evaluation of this expression?

  --Larry




--
--
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
--- You received this message because you are subscribed to the Google Groups "Clojure" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to clojure+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to