logoalt Hacker News

rurban08/01/20252 repliesview on HN

For reference:

Valid is either

   sub () {
     my ($x, $y, $z) = @_;
or

   sub ($x, $y, $z) {

Replies

sshine08/01/2025

I should have said

  my ($x, $y, $z) = @$_[0];
but I was making a joke.

If $_[0] is an array reference, @$_[0] becomes a list.

The joke was a reference to most wrong Perl programs being valid for something.

Hence the meme: "93% of Paint Splatters are Valid Perl Programs"

https://www.mcmillen.dev/sigbovik/

kqr08/01/2025

Why the empty prototype in the first alternative?

show 1 reply