$thingy{'someElement'}++; # vivifies it to '0' before you increment it to '1' $thingy{'someElement'} .= "Foo!"; # vivifies it to the empty string... $thingy{'someElement'}{'otherElement'} = "Foo!"; # vivifies someElement to a hash reference