TIMTOWT concat / hypo-operators

2001-10-06 Thread Edwin Steiner
Hello! Is this going to concat $a,$b and $c? $foo = _($a,$b,$c); (One way to save underlines and spaces.) Or would that be: $foo = _@($a,$b,$c); BTW: what will these do? $a _=_ ($b,$c); $a ^_= ($b,$c); # (better with hypo-operator?, see below) (WIM in

RE: TIMTOWT concat / hypo-operators

2001-10-06 Thread Brent Dax
Edwin Steiner: # Is this going to concat $a,$b and $c? # # $foo = _($a,$b,$c); # # (One way to save underlines and spaces.) # Or would that be: # # $foo = _@($a,$b,$c); That would be C$foo=join('', $a, $b, $c), just like in Perl 5. # BTW: what will these do? # # $a _=_