in reply to Re: meaning of the following array
in thread meaning of the following array

my $seq = [ 1 .. 5 ]; # anonymous list

[ 1 .. 5 ] is anonymous array reference, not anonymous list.