Help for this page

Select Code to Download


  1. or download this
      our $storage; # or:
      # our Storage $storage; # I think this works to type it
    
  2. or download this
      use Storage;
      my $storage = new Storage();
    ...
        $source->storeData();
        $destination->useData();
      }
    
  3. or download this
      use Storage;
      my $storage = new Storage();
    ...
         $source->storeData();
         $destination->useData();
      }