Help for this page

Select Code to Download


  1. or download this
    for ( $sFunction ) {
        /test1/ || /test2/ and do {
    ...
            # will be executed too
        };
    }
    
  2. or download this
    my $do_test1 = sub { 
        #... 
    ...
            # will be executed too
        };
    }