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