Help for this page

Select Code to Download


  1. or download this
    process($data_ref,\@set_up,$template,*OUT);
    # Process
    ...
        foreach my $record (@data) {
            --do things--}
    }
    
  2. or download this
        my $data_ref = shift;     #Big array
    
        foreach my $record (@{$data_ref}) {
            -- do things more efficiently --
                    }