in reply to Re: Re: random elements from array - new twist
in thread random elements from array - new twist
perl -MO=Deparse,-p -e "$a = $_ + rand @{$r} - $_" ($a = ($_ + rand((@{$r;} - $_)))); ^^ ^^ -e syntax OK
The '- $_' is part of the argument to rand, not the assignment to $a.
|
---|