Nathan Wiger <[EMAIL PROTECTED]> writes:

> So will these be "automatically-my()ed"? Or will you have to say:
> 
>    sub whois (my $user) {
>        # ...
>    }
> 
> This seems more consistent (but there's that dang my() again!) :-)

What would be the semantics if 'my' were left out? Would it be
equivalent to:

    sub whois ($) {
        local($user) = @_;
    }

I see no use for this.

-- Johan

Reply via email to