Help for this page
my %conf = ( abc => 12 ); print $conf{abc}; # this is a hash my $conf_ref = { abc => 13 }; print $conf_ref->{abc}; # conf_ref is a reference to a hash