Help for this page

Select Code to Download


  1. or download this
    D:\tmp\pm>perl -MO=Deparse
    print "a"=> =>"c";
    ...
    syntax error at - line 2, near "print (=>"
    - had compilation errors.
    __DATA__
    
  2. or download this
    D:\tmp\pm>perl -MO=Deparse
    print "a"=> => => "c";
    __END__
    print 'a', 'c';
    __DATA__