I didn't know you could name functions made with fn like that. nice.

It would be a handy feature for defn to have maybe...

On Monday, 6 August 2012 16:16:06 UTC+10, Carlo wrote:
>
> > 1. would it be, or is it possible to have something generic like this? 
>
> You could use: 
>
> (def v1 (fn self 
>   ([x] (self x [])) 
>   ([x r] (conj r x))) 
>
> > 2. What about anonymous fns? 
>
> The same idea, just without the "def". 
>
> (fn call-self 
>   ([x] (call-self x 0)) 
>   ([x y] ...))) 
>

-- 
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

Reply via email to