- or download this
$hash{foo} ||= keys %hash;
- or download this
for($hash{foo}) { $_ ||= keys %hash; }
- or download this
for($hash{foo}) { } # results in { 'foo' => undef }
- or download this
sub blackbox { ... }
blackbox($hash{foo});
- or download this
sub blackbox { } # no autovivify
- or download this
sub blackbox { $_[0] = 123 } # results in { 'foo' => 123 }