> Besides, named arguments will solve this (in fewer chars even :-)...
> 
>        $user = 'nwiger';
>        sub whois ($user) {
>            # ...
>        }
> 
> Damian

Great point. I'll "settle" for that (it's what I'm looking for anyways).
:-)

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!) :-)

-Nate

Reply via email to