On Fri, Feb 25, 2005 at 03:56:06AM +0100, Stéphane Payrard wrote:
> 
> Giving scoping functions the status of list operators
> would allow to drop parentheses when not used in conjunction
> with initializer so one could write:
> 
>   my $a, $b, $c;
> 
> instead of
> 
>   my ($a, $b, $c);

Too bad that in English there is no plural for my.
In French it would work fine

  mon $a;   # French for C<my>, singular

# C<mes> as a list operator
  mes $a, $b, $c;  # French for C<my>, plural

--
  stef

Reply via email to