Help for this page

Select Code to Download


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