Can someone please advise me if this is possible:
// --- IX.java ---
interface IX
{
void doit();
void doit(int n);
}
; --- x.clj ---
(def prx (proxy [IX][]
(doit
([] (doseq [x someSeq] (doit x))
([y] (print y))))
When I tried something of this form, it looks like the call of the 1-
arg function from the 0-arg function can't be resolved.
Thanks in advance
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to [email protected]
Note that posts from new members are moderated - please be patient with your
first post.
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
-~----------~----~----~----~------~----~------~--~---