Help for this page

Select Code to Download


  1. or download this
    if ( $range > 500 )
    {
        WAT_OP();
    ...
    {
        complete_tree_op();
    }
    
  2. or download this
    my @action_tree = ( { test => sub { $_[0] >= 300 && $_[0] <= 400 },
                          action => sub { print "GUDNITES\n"; CORE::exit(0
    +) } },
                        { test => sub { $_[0] >= 425 && $_[0] <= 500 },
    ...
    {
        $_->{test}->($signal) && $_->{action}->() for @action_tree;
    }