http://www.perlmonks.org?node_id=473115


in reply to Re: Problems printing contents of array
in thread Problems printing contents of array

an @array used in $scalar location will print the length of the array

True, but this isn't the case.

perl -le '@A=qw(a b c d); print "@A"' a b c d