Larry Wall wrote:
> 
> I'm trying to decide if
> 
>    sub ($self: $just_a_named_param)
> 
> can meaningfully put anything into $self.  It seems doubtful, and it should
> probably be
> 
>    submethod ($self: $just_a_named_param)

I agree. If

 sub ($self: $foo)

works than it reduces privacy, since someone could call a sub like
externally, when it wasn't intended.

    Mark

Reply via email to