> > "David Whipp" <[EMAIL PROTECTED]> writes:
> > 
> > > Thus, the perl5 transalations would be:
> > >
> > >   foo() => $self->foo()
> > >   .foo() => $_->foo()
> > >   &foo() => foo()
> > >   ...

Alternative:

   $self.foo() => $self->foo() # and can be .foo() when $self is $_
   .foo() => $_->foo() # but might be altered by a pragma
   foo() => foo()

Allison

Reply via email to