Help for this page

Select Code to Download


  1. or download this
    ;;config
    var1=foo
    var2=bar
    
  2. or download this
    use Config::Tiny;
    my $conf = Config::Tiny->read('test.ini');
    require Data::Dumper;
    print Data::Dumper::Dumper($conf);
    
  3. or download this
    $VAR1 = bless( {
                     '_' => {
    ...
                              'var2' => 'bar'
                            }
                   }, 'Config::Tiny' );