Help for this page

Select Code to Download


  1. or download this
    my @another = @{$arr[1]};
    for ( $i = 0; $i < 3; $i++ ) {
            print "another[$i] = $another[$i]\n";
    }
    
  2. or download this
    my $another = $arr[1];
    for ( $i = 0; $i < 3; $i++ ) {
            print "another[$i] = $another->[$i]\n";
    }