in reply to Printing the length of an array ?
Most likely you will want to print something more than just the length:
print @array."\n"; [download]
print scalar(@array); [download]
Jenda