Help for this page

Select Code to Download


  1. or download this
    elsif (
      $input ne 'good' and
    ...
    ){
    next;
    }
    
  2. or download this
    elsif (
     $input !~ /good|bad|iffy/
    ){
    next;
    }
    
  3. or download this
    my %lookup = (
      good => undef,
    ...
    );
    # and then within your loop
    next unless exists $lookup{$input};