http://www.perlmonks.org?node_id=372532


in reply to camel code

Ah, just so you know this throws loads of warnings under 5.8.5 RC1 :

Newline in left-justified string for sprintf at (eval 1) line 1, <DATA +> line 4. ...

:-)


---
demerphq

    First they ignore you, then they laugh at you, then they fight you, then you win.
    -- Gandhi


Replies are listed 'Best First'.
Re^2: camel code
by Anonymous Monk on Oct 20, 2004 at 17:56 UTC
    Just change the shebang line.

    Change the -w to a -X (the warnings will no longer be displayed):

    #!/usr/bin/perl -X              #camel code

      IIRC this silly warning has been removed from Perl in a later version (thank god).


      ---
      demerphq

        First they ignore you, then they laugh at you, then they fight you, then you win.
        -- Gandhi

        Flux8