Help for this page

Select Code to Download


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