in reply to Re^7: Adding Unique Elements to Array
in thread Adding Unique Elements to Array

You are right. This gets a compilation error:
my @foo = qw(one two three); @foo x= 3;
I had thought that all combination operators were defined in terms of their expansion: if you can write @foo = @foo x 3, you can write @foo x= 3. Not so. Good to know.

Caution: Contents may have been coded under pressure.