Help for this page

Select Code to Download


  1. or download this
    for my $month_data (@ary) {
        ...
    }
    
  2. or download this
    $month_data->[0]
    
  3. or download this
    for my $month_data (@ary) {
        print $month_data->[0], "\n";
    }