in reply to
size of an array ref
# Get the size of a reference to an array: my $array_ref =
'this','that','the other'
; my $item_count = @{$array_ref};
Comment on
Re: size of an array ref
In Section
Seekers of Perl Wisdom