Help for this page

Select Code to Download


  1. or download this
    # in ini file
    [Section1]
    ...
    baz=quux
    [Section2]
    perl=cool
    
  2. or download this
    # in program after reading file with Config::Tiny
    # note you can use them in any order you want
    my $perl = $ini->{'Section2'}->{'perl'};
    my $baz = $ini->{'Section1'}->{'baz'};
    my $foo = $ini->{'Section1'}->{'foo'};
    
  3. or download this