On Mon, May 28, 2018 at 1:26 AM, ToddAndMargo <toddandma...@zoho.com
<mailto:toddandma...@zoho.com>> wrote:
Hi All,
As the guys o the chat line say, "Death to parenthesis".
Can I get away with doing away with parenthesis on these,
or does it man something different without the parenthesis?
( $NewRev = $Line ) ~~ s| .* "Version: <\/b>" ||;
$NewRev = $Line ~~ s| .* "Version: <\/b>" ||;
return ( $a, $b );
return $a, $b;
Many thanks,
-T
On 05/28/2018 01:34 AM, Brent Laabs wrote:
https://docs.perl6.org/language/operators
Chaining infix (~~) has higher precedence than assignment (=), so in the
first case it changes the meaning.
Uh oh, I have to go back and fix some stuff.
Thank you!
-T