in reply to alternatives to if and series of elsif
use List::Util 'min'; sub compare { my ($points, $quota) = @_; my ($newquota) = int($points/2000) + 15; if ($newquota > $quota && $quota <= 24){ return min(24, $newquota); } return 15; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: alternatives to if and series of elsif
by tlm (Prior) on Jul 02, 2005 at 04:51 UTC |