in reply to Re: Modern Perl Book "Paquito" Example Question
in thread Modern Perl Book "Paquito" Example Question

G'day Perlbotics,

I upvoted your post but just wanted to comment on:

use v5.10; # or higher

For backwards compatibility, it's preferable to write that as:

use 5.010;

For further discussion, see:

— Ken