Help for this page

Select Code to Download


  1. or download this
    my @array=(    [0,1,2,3,4],
                [25,26,27,28,29],
                [10,11,12,13,14]
                );
    print @{@array[0]}[0..4];
    
  2. or download this
    my @array=(    [0,1,2,3,4],
                [25,26,27,28,29],
                [10,11,12,13,14]
                );
    print @{@array[0..2]}[3]