Help for this page

Select Code to Download


  1. or download this
    $ perl -e'STDOUT->foo'
    Can't locate object method "foo" via package "IO::File" at -e line 1.
    
  2. or download this
    $ perl -e'use IO::File; IO::File::say( *STDOUT, "ok" )'
    Undefined subroutine &IO::File::say called at -e line 1.
    ...
    
    $ perl -e'STDOUT->say( "ok" )'
    ok