- or download this
push @{ $config->{groups}->{$last_group} }, $line;
- or download this
my $ref_to_array = $config->{groups}->{$last_group}
push @$ref_to_array, $line;
- or download this
my $ref_to_array = $config->{groups}->{$last_group}
push @$ref_to_array, $line;
# In case $ref_to_array was autovivified,
$config->{groups}->{$last_group} = $ref_to_array;
- or download this
my $ref_to_array = $config->{groups}->{$last_group} ||= [];
push @$ref_to_array, $line;