Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
    for my $arrayName (keys %arrays) {
        print "$arrayName: @{$arrays{$arrayName}}\n"
    }
    
  2. or download this
    1
    2
    ...
    5
    awesome_array: 1 2 3 4 5
    another_awesome_array: 1 2 3 4 5