in reply to Re: Diamond operator iterating over arrays?
in thread Diamond operator iterating over arrays?
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
|
|---|