http://www.perlmonks.org?node_id=632201


in reply to Practical example of "Is Perl code maintainable"

What jumps out at me is the use of $dummy rather than undef as the placeholder for value-to-discard-in-list-assignment, especially since this very function (stat) is used in the example of doing so in List value constructors list . . .

Replies are listed 'Best First'.
Re^2: Practical example of "Is Perl code maintainable"
by jhourcle (Prior) on Aug 13, 2007 at 14:28 UTC

    I've seen valid reasons for using '$dummy' rather than 'undef', but not in this example.

    I can't remember if it was specifically a MacPerl thing, but there were some older versions where you couldn't cast undef with my, so when I'd be working with tab delim files, I'd do stuff like:

        my ($foo, $bar, $undef, $undef, $baz) = split (/\t/, $line);

    As the following would throw errors:

        my ($foo, $bar, undef, undef, $baz) = split (/\t/, $line);

    It's not a problem any longer, and the example given declares the variables in the lines before, so it wouldn't have been an issue. I'd assume that either the person was learning perl by looking at other people's old code, or had learned a while back, and hadn't kept up with the changes in the language.

Re^2: Practical example of "Is Perl code maintainable"
by moritz (Cardinal) on Aug 13, 2007 at 13:42 UTC