Help for this page

Select Code to Download


  1. or download this
    # daemon
    use warnings;
    ...
    
    $daemon->handle;
    __END__
    
  2. or download this
    package Foo;
    
    ...
    sub bar { "baz!\n"; }
    1;
    __END__
    
  3. or download this
    # client
    use warnings;
    ...
      print $res->result;
    }
    __END__