Help for this page

Select Code to Download


  1. or download this
      my $session = My::Session->new();
      my $foo = Foo->new( session => $session );
      # and foo creates Bar passing session, which creates
      # Baz passing session
    
  2. or download this
      my $session = My::Session->new();
      my $foo = Foo->new();
    ...
       ...
       $self->{session} = My::Session->new();
      }