in reply to Re^3: Noble DOT vs the Allmighty ARROW
in thread Noble DOT vs the Allmighty ARROW
$foo = $bar:$nuu; # Currently meaninglessI really don't want to have to try and parse
I think the ' _ ' operator is ugly, but not that bad. In general I don't think there will be much call for it in the future since we will be able to say things like$concated = $x < $y ? $x:$y : $y:$x;
instead of$string = "for $x + $y the answer is $($x+$y)\n";
$string = "for $x + $y the answer is " . ($x+$y) . "\n";
|
|---|