Help for this page

Select Code to Download


  1. or download this
    my $conf = Ex::mod->conf(user=>'Alice');
    my $a = $conf->new();
    
  2. or download this
    sub new {
        my( $conf, %opts ) = @_;
    ...
        };
        return bless $self, $class;
    }
    
  3. or download this
    sub send_request {
        my( $self, ... ) = @_;
        croak "Can't send_request via incomplete object\n"
            if  ! $self->{socket};