- or download this
use Acme::Tools;
if (between($frequency, 10, 15) {print "Yes"}
- or download this
if ($frequency == 10 .. 15) {print "Yes"}
- or download this
if ( ($frequency == 10) .. 15 ) {print "Yes"}
- or download this
my $frequency = 10;
if ($frequency == 10 .. 15) {print "Yes"}