For code like:
if ($val > $max) { $max = $val; }
modifiers are your friend. Try this instead:
$max = $val if $val > $max;
In reply to Re: Array of Hashes
by GrandFather
in thread Array of Hashes
by Lhamo_rin
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |