Help for this page

Select Code to Download


  1. or download this
    $ perl -e'print "drivel";#some code'
    drivel
    
  2. or download this
    $ perl
    print "drivel";#some code
    __END__
    drivel
    
  3. or download this
    D:\tmp\pm>perl
    print "drivel";#some code
    __END__
    drivel
    D:\tmp\pm>
    
  4. or download this
    $ perl -MO=Deparse -E'print "drivel";#some code'
    use feature 'current_sub', 'evalbytes', 'fc', 'postderef_qq', 'say', '
    +state', 'switch', 'unicode_strings', 'unicode_eval';
    print 'drivel';
    -e syntax OK