Help for this page

Select Code to Download


  1. or download this
    >perl -le"$x = 'abc'; print $x;"
    abc
    
  2. or download this
    >perl -le"$x = 'abc'; $x->print;"
    Can't locate object method "print" via package "abc" (perhaps you forg
    +ot to load "abc"?) at -e line 1.