Re: Hyper-operators and Underscore

2001-10-06 Thread Erik Lechak
variables_with_names_like_this_were_common. You can see why I have reservations about the overuse of underscores. And about that "shifted" question. I guess I am drinking ways too much Mountain Dew. I was thinking shift as in pop as opposed to shift as in keyboard. Sorry. E

Re: Hyper-operators and Underscore

2001-10-06 Thread Erik Lechak
e confused with an identifier? 2) Where did Larry say "no different that the other operators that also consist of valid character identifiers." ? > > IIRC, '^' was considered earlier. (And it's shifted, BTW.) > 3) What do you mean by shifted? Thank you , Erik

Hyper-operators and Underscore

2001-10-06 Thread Erik Lechak
,3,4,5); my @y=(2,3,4,5,6); my @z=(4,5,6,7,8); my @result; for my ($x,$y,$z) (@x;@y;@z){ push(@result,$x+$y+$z); } and if you could do that why not this: my @x=(1,2,3,4,5); my @y=(2,3,4,5,6); my @z=(4,5,6,7,8); my @result=map{ $_[0] + $_[1] + $_