in reply to forcing array to scalar context in string interpolation?

Heh, all he wants is the number of elements in the array:
my @array = qw/zero one two three/; print $#array;
Where the number printed is the number of elements -1.