Help for this page

Select Code to Download


  1. or download this
    {  
     my $initialized;
    ...
          # fill the array
     }
    }
    
  2. or download this
    sub example {
        my @array;
        $#array = $size_needed;
        # fill array -- this is where you may save time
    }