Help for this page

Select Code to Download


  1. or download this
    if($tmp eq 'F'){
            ;    # do nothing, spot held for clarity
    ...
            ...  # do something 
        }
    }
    
  2. or download this
    $tmp = $some_result;
    my $handler = $handlers{$tmp};
    &$handler(...) if $handler; # might be undef, as in 'F' case