Help for this page

Select Code to Download


  1. or download this
    my %data_h = (previously calculated data);
    my @errors;  # store errors here
    ...
    
    if (@passed) {
    # etc.
    
  2. or download this
    # create some dummy subroutines
    sub test_A {
    ...
       do_tests($_);
       push @passed, $_;
    }