in reply to Re^2: Syntax error for the following ???
in thread Syntax error for the following ???
It doesn't work whether use strict; is used or not.
$ perl -e'my @Aseen{@a} = ();' syntax error at -e line 1, near "@Aseen{" Execution of -e aborted due to compilation errors.
You probably added that my at the same time you added use strict;
|
|---|