in reply to adding key/value pairs to a hash.

$hash{d} = 4; # for hash $hash->{d} = 4; # for hash reference
      
--------------------------------
SV* sv_bless(SV* sv, HV* stash);