Help for this page

Select Code to Download


  1. or download this
    $session{x} = 1;
    
  2. or download this
    $y = $session{x}; # $session{x} is an object
    $y->set_z(3); # this changes the state of object $y
    
  3. or download this
    $y = $session{x};
    foo($y);
    sub foo {
        $y->set_z(3); # this changes state of object $y
    }