Re: numbers at the end of generated class name using compile

2010-04-13 Thread Travis
On Apr 13, 5:14 pm, Alex Osborne wrote: > Travis writes: > > I'm just curious where those numbers come from. For example, if I > > compile the class bar.clj containing: > > > (ns bar) > > (defn foo [] > >   nil) > > > I'll get three classes, one of which is: > > > bar$foo__5.class > > The number

Re: numbers at the end of generated class name using compile

2010-04-13 Thread Alex Osborne
Travis writes: > I'm just curious where those numbers come from. For example, if I > compile the class bar.clj containing: > > (ns bar) > (defn foo [] > nil) > > I'll get three classes, one of which is: > > bar$foo__5.class The numbers are just a global incrementing counter (the same one used

numbers at the end of generated class name using compile

2010-04-13 Thread Travis
I'm just curious where those numbers come from. For example, if I compile the class bar.clj containing: (ns bar) (defn foo [] nil) I'll get three classes, one of which is: bar$foo__5.class What is that "5" for? Thanks, Travis -- You received this message because you are subscribed to the G