Sterin, Ilya wrote:
> Well then maybe $_ can be a reference to a multidimensional array or hash,
> and temp vars can be access like this.
> 
> for ( @foo, @bar ) {
>   print "$_->[0] : $_->[1]\n";
> }

That's bizarre and unnecessary.  We can already do this:

  for ( \@foo, \@bar ) {
    print "$_->[0] : $_->[1]\n";
  }

-- 
John Porter

Reply via email to