Help for this page

Select Code to Download


  1. or download this
    my @array;
    my ($i,$j);
    ...
    for ($j=4; $j<10; $j++) {
        $array[$j]= 50;
    }
    
  2. or download this
    my @array;
    
    ...
    ### wrong syntax
    $array[4..9] = 50;