Help for this page

Select Code to Download


  1. or download this
    $aray_size = scalar (@$states[ 1 ]);
    
  2. or download this
    my $states = [ ];            # Annonymous array constructed
    push @$states, 'Oregon';
    ...
    for ($counter = 0; $counter < $array_size; $counter++) {
    print "\t@$states [  1 ]->\[$counter\]\n";
    }