Help for this page

Select Code to Download


  1. or download this
                  if ($subkey == 1) {
                $acc = $messagebin{$file}{$subkey};
    ...
             } else { # you should _always_ have an else branch
               warn "Unhandled subkey value $subkey.";
             };
    
  2. or download this
    my $acc;
    my %handler = (
    ...
    } else {
      warn "Unhandled subkey value $subkey";
    };