in reply to Passing a hash plus some strings to a subroutine
It's just moaning about your use of individually shifting the args. This passes perlcritic --stern for me:
sub generate { my ($record, $status, %data) = @_; return; }
🦛
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Passing a hash plus some strings to a subroutine
by ikegami (Patriarch) on Dec 17, 2025 at 15:35 UTC | |
|
Re^2: Passing a hash plus some strings to a subroutine
by LanX (Saint) on Dec 17, 2025 at 15:55 UTC |