Help for this page

Select Code to Download


  1. or download this
    $ perl -wMstrict -MO=Deparse -e 'my DB $x'
    BEGIN { $^W = 1; }
    ...
    my DB $x;
    -e syntax OK
    $
    
  2. or download this
    C:\>perl -wMstrict -MO=Deparse -e "my DB $x"
    BEGIN { $^W = 1; }
    use strict;
    my DB $x;
    -e syntax OK