This would be sufficient:
BEGIN {
if( eval "use fakemodule; 1;") {
print STDERR "Loaded fakemodule";
}
else {
print STDERR "Couldn't load fakemodule.";
}
}
Don't put BEGIN blocks inside a subroutine, they won't do what you want.
Don't print in the BEGIN block, it will come before the Content-type header
Calling a subroutine with the '&a' syntax has the following effects, from perlsub:
- &NAME(LIST); # Circumvent prototypes.
- &NAME; # Makes current @_ visible to called subroutine.
In your code you used the
&a; form, which would make the current @_ visible to the called subroutine.
For example:
first(1,2,3);
sub first {
&second;
}
sub second {
print for @_;
}
# Output is 123
Although it isn't relevant for this particular case it is still good to be aware of the prototype circumvention behaviour. Here is an example:
use strict;
use warnings;
use Data::Dumper;
sub pro(\@) {
print Dumper \@_;
}
my @list = (1,2,3);
pro(@list);
&pro(@list);
Output:
$VAR1 = [
[
1,
2,
3
]
];
$VAR1 = [
1,
2,
3
];
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.