Appearance
Create, update, and ensure().
ensure()
stats: hash = { hits: 1 }; stats["hits"] = stats["hits"] + 1; stats.ensure("misses", 0); say(stats);
{"hits": 2, "misses": 0}