Tagged Questions
6
votes
5answers
181 views
Should I change my utilities.pl to a utilities.pm module?
In our product we have a big utilities file that we require (with do) at the beginning of a lot of our files. Is there a reason not to turn this into a module? For example, instead of doing this:
...
3
votes
5answers
302 views
Why am I unable to load a Perl library when using the `do` function?
I'm new to Perl, and I'm updating an old Perl website. Every .pl file seems to have this line at the top:
do "func.inc";
So I figured I could use this file to tag on a subroutine for global use.
...
1
vote
1answer
73 views
Perl && do { last; };
In my book it uses something like this:
for($ARGV[0])
{
Expression && do { print "..."; last; };
...
}
Isn't the for-loop incomplete? Also, what's the point of the do, couldn't it just be { ...