Help for this page

Select Code to Download


  1. or download this
    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