Help for this page

Select Code to Download


  1. or download this
    $ perl -e'Socket->VERSION(1.3)'
    Socket defines neither package nor VERSION--version check failed at -e
    + line 1.
    
  2. or download this
    $ perl -e'BEGIN { $INC{"Socket.pm"}=1; } use Socket 1.3'
    Socket defines neither package nor VERSION--version check failed at -e
    + line 1.
    BEGIN failed--compilation aborted at -e line 1.
    
  3. or download this
    $ perl -e'BEGIN { 1 for $INC{"Socket.pm"}; } use Socket 1.3'
    Socket defines neither package nor VERSION--version check failed at -e
    + line 1.
    BEGIN failed--compilation aborted at -e line 1.
    
  4. or download this
    BEGIN {
        if (exists($INC{"Socket.pm"}) {
    ...
            warn(">>> absent\n");
        }
    }