Help for this page

Select Code to Download


  1. or download this
      my $test = Foo->new();
      my $test2 = Foo->new();
    ...
      $test2->read_write("wine");
      print "test: should be water, is ", $test->read_write, "\n";
      print "test2: should be wine, is ", $test2->read_write, "\n";
    
  2. or download this
      test: should be water, is wine
      test2: should be wine, is wine