<[EMAIL PROTECTED]> wrote:
> > tie (my $shoe) => $string;
>
> Not enough arguments for tie...
>

    tie +(my $shoe) => $string;

This is the same as would happen to `print', for example. Or else, the
easyer

    tie my($shoe) => $string;

It doesn't look like a function, so it isn't.


>
> Ah, more pointless changes with perl5.
>

If this makes `my' DWIM, I think it's not pointless...

- Branden

Reply via email to