Help for this page

Select Code to Download


  1. or download this
    D:\>perl -we "print('foo')"
    foo
    ...
    D:\>perl -we "no warnings qw/syntax/; print ('foo')"
    foo
    D:\>