Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
          }
        }
    }
    
  2. or download this
    my @weeks = ('@week01','@week02','@week03');
    for my $ref (@weeks) {
    ...
    for(@weeks){
       print;
    }
    
  3. or download this
    my @week01 = (0..13);
    my @week02 = (0..11);
    ...
       print join ",",@$_;
       print $/;
    }
    
  4. or download this
    for my $array_ref (@weeks_arr){
       print join "," ,@{$array_ref};
    }
    
  5. or download this
    for(@weeks_arr) { 
     print join ",",@$_;  
     print $/;
    }