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 | |
|
Re^2: Passing a hash plus some strings to a subroutine
by Anonymous Monk on Jan 10, 2026 at 02:51 UTC | |
by hippo (Archbishop) on Jan 10, 2026 at 13:21 UTC | |
by Anonymous Monk on Jan 11, 2026 at 01:10 UTC |