Thing that just bit me because #Perl is not quite timtoady sometimes:
```
my $foo = pop split(/bla/, $str);
```
(can't pop scalar in modern Perl and this construct puts split into scalar context I guess and that's not fun for pop)
(wanted to avoid the ugly `(...)[-1]` construct)
```
my $foo = pop split(/bla/, $str);
```
(can't pop scalar in modern Perl and this construct puts split into scalar context I guess and that's not fun for pop)
(wanted to avoid the ugly `(...)[-1]` construct)
1