- or download this
package My::Config;
...
1;
- or download this
package My::Base;
...
1;
- or download this
!/usr/bin/perl
...
$config->base_directory("/home/otheruser/");
print $config->base_directory() , "\n";
- or download this
#!/usr/bin/perl
...
$object->config->base_directory("/home/otheruser/");
print $object->config->base_directory() , "\n";
- or download this
#!/usr/bin/perl
...
print $object->base_directory() , "\n";