Help for this page

Select Code to Download


  1. or download this
    # these will be different
    #
    ...
    
    print $aoa1[2]."\n";
    print $aoa2[2]."\n";
    
  2. or download this
    use strict;
    use warnings;
    ...
    print Dumper(\@aoa1);
    print Dumper(\@aoa2);