in reply to Re: Diamond operator iterating over arrays?
in thread Diamond operator iterating over arrays?

That's right, and the array is imply interpolated into the string.

You can see that by interpolating an array with items that contain whitespaces:

$ perl -e '@a = ("2 3", 4); while (<@a>) { print $_ ."\n";}' 2 3 4
Perl 6 - links to (nearly) everything that is Perl 6.