Perl Array Howto - McGill School Of Computer Science
Initialize (clear) an array. Solution my @array = (); Solution $#array is the subscript of the last element of the array (which is one less than the length of the array, since arrays start from zero). Assigning to $#array changes the length of the array @...