- or download this
# this is in a loop that iterates through the file
# and at some point it runs across:
...
$hash{$1} = split /,/, $2;
next;
};
- or download this
Use of implicit split to @_ is deprecated
- or download this
/(\S+)\s?=?\s?\[(.+)\]$/ && do {
$hash{$1} = @{[ split /,/, $2 ]};
next;
};