- or download this
use strict;
use warnings;
...
use Data::Dumper;
print Dumper $cfg;
- or download this
package configthing;
...
return $this;
}
- or download this
$VAR1 = bless( [
bless( {
'c' => 3,
...
'default for c',
''
], 'configthing' );
- or download this
$VAR1 = bless( {
'c' => 'default for c',
'a' => 'set at initialization',
'b' => 'default for b',
'd' => ''
}, 'configthing' );