Help for this page

Select Code to Download


  1. or download this
    $arr[0] = [1,2,3];
    $arr[1] = [4,5,6];
    $index=1;
    
    print "$arr[$index][2]";
    
  2. or download this
    my @array = (1,2,3);
    my $array[0] = 4;
    
  3. or download this
    perldoc perlref