Help for this page

Select Code to Download


  1. or download this
    SWITCH: {
        $condition1 and do{ stuff(); last SWITCH; };
        $condition2 and do{ other(); last SWITCH; );
        default();
    }
    
  2. or download this
    my %options = ( key1 => \&sub1,
                    key2 => \&sub2,
                    key3 => \&sub3 );
    $options{$condition}->();