Help for this page

Select Code to Download


  1. or download this
    my @arrayC;
    while(defined($textblock) = <>) {
    ...
        }
        push @arrayC, \@arrayA;
    }
    
  2. or download this
        push @arrayC, [ $textblock, \@arrayA ];