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
    Or he can simply say use 5.12.x.
    --perl.j

      Did you try it?

      $ perl -e " use 5.12.x; " syntax error at -e line 1, near "use 5.12" Execution of -e aborted due to compilation errors.

      Suggesting say is nice, if you explain how to actually enable it :)