Help for this page

Select Code to Download


  1. or download this
    $self->Session::init (@args);
    
  2. or download this
        my $obj=new Some::Module;     # ok but not so cool
        my $obj=Some::Module->new();  # TWTDI
    
  3. or download this
    package Session;
    #....
    ...
            $self->init(@_); #no need to copy @_
            return $self;
    };
    
  4. or download this
    package SessionManager;
    #....
    ...
        print "New session has ID of ".$i;
        return $session;
    }