Help for this page

Select Code to Download


  1. or download this
    $month[0][0] = "January";
    $month[0][1] = "Jan";
    $month[1] = ["February", "Feb"];
    push @month, ["March", "Mar"];
    push @{$month[3]}, "April";
    push @{$month[3]}, "Apr";
    
  2. or download this
    0  ARRAY(0x20381390)
       0  'January'
       1  'Jan'
    ...
    3  ARRAY(0x204424d0)
       0  'April'
       1  'Apr'
    
  3. or download this
    print $month[3][1]; # prints "Apr"