I am trying to use AppConfig::File for handling a config file. However, I am always getting an empty value from the object. The following is the code:
my $state = AppConfig::State->new( {
CREATE=>1,
} );
my $cfgfile = AppConfig::File->new($state);
$cfgfile->parse('sample.cfg');
my $temp = $cfgfile->{foo};
print "foo value: $temp\n";
This is in the sample.cfg:
## comment
foo = me
What did I do wrong? Thanks in advance.