Uri Guttman <[EMAIL PROTECTED]> writes:

>       sub func {
>               my( $foo, @bar ) = @_ ;
>               blah ;
>       }
> 
> becomes:
> 
>       sub func( $foo, @bar ) {
>               blah ;
>       }

I also hope that

        sub func : method {
                my( $self, $foo, @bar ) = @_ ;
                blah ;
        }

will become:

        sub func : method ( $foo, @bar ) {
                blah ;
        }

(with $self automatically supplied)

-- Johan

Reply via email to