in reply to Re^2: 'use strict' without a semicolon can be interesting
in thread 'use strict' without a semicolon can be interesting
It already does that.
$ perl -e'use strict "foo"' Unknown 'strict' tag(s) 'foo' at -e line 1 BEGIN failed--compilation aborted at -e line 1.
You passed an empty list which is perfectly valid (i.e. the same as use strict;).
|
|---|