in reply to Re^7: Adding Unique Elements to Array
in thread Adding Unique Elements to Array
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.my @foo = qw(one two three); @foo x= 3;
|
|---|