Help for this page

Select Code to Download


  1. or download this
    say "month are @month";
    
    month are ARRAY(0x1fa34e0) ARRAY(0x1fa3678) ARRAY(0x1fa41d0) ARRAY(0x1
    +edd548) ARRAY(0x1edd5f0) ARRAY(0x1edd698)
    
  2. or download this
    use Data::Dumper;
    say Dumper \@month;
    
  3. or download this
    $VAR1 = [
              [ undef, undef, undef, undef, undef, undef, 1 ],
    ...
              [ 23, 24, 25, 26, 27, 28, 29 ],
              [ 30, undef, undef, undef, undef, undef, undef ]
            ];
    
  4. or download this
    foreach (@month) {
      say join " ", @$_;
    }
    
  5. or download this
    ( undef, 2, 3, 10 )
    
  6. or download this
    ( '   ', ' 2 ', ' 3 ', '10 ')
    
  7. or download this
    foreach (@month) {
      say map { 
    ...
            }
        } @$_;
    }
    
  8. or download this
    my $font = $pdf->ttfont('DejaVuSans.ttf');