Help for this page

Select Code to Download


  1. or download this
    my $contition = $some_letter;
    
    ...
    );
    $dispatch{$condition}->();
    
  2. or download this
    my @dispatch = (
      sub { shift() eq 'a' } => sub { "do something with a" },
    ...
    for (my $i; $i < @dispatch; $i+=2) {
      $dispatch[$i+1]->() if $dispatch[$i]->($variable);
    }