- or download this
$a // $b
- or download this
defined $a ? $a : $b
- or download this
$c //= $d;
- or download this
$c = $d unless defined $c;
- or download this
my $ref = \%database;
$ref = $ref->{$_} //= {} for @$fields;
- or download this
my $ref = \%database;
foreach my $field (@$fields) {
...
}
$ref = $ref->{$field};
}