in reply to Re: Perl Script New Line problem
in thread Perl Script New Line problem
not by default, but only if you enable modern perl, say through Modern::Perl or -E
$ perl -e " say 1 Number found where operator expected at -e line 1, near "say 1" (Do you need to predeclare say?) syntax error at -e line 1, near "say 1" Execution of -e aborted due to compilation errors. $ perl -E " say 1 1
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl Script New Line problem
by perl.j (Pilgrim) on Dec 21, 2011 at 17:26 UTC | |
by Anonymous Monk on Dec 21, 2011 at 18:55 UTC |