in reply to Re: Re: Re: Multiplying together the numers in an array
in thread Multiplying together the numers in an array
Yes, I understand what *= does; the point is that
reduce { $a *= $b } produces the same result as reduce { $a * $b } and the latter expresses the intention better (but the former is faster).