- or download this
elsif ($sym =~ 'auto') {
# To auto-seed or not
$auto_seed = $sym =~ /no|!/;
}
- or download this
no strict 'refs'<code> to
<code>
{ no strict 'refs'; *{"${pkg}::$sym"} = \&$sym; }
- or download this
eval { require LWP::UserAgent; };
if ($@) {
push(@errors, "Failure loading LWP::UserAgent: $@");
next;
}
- or download this
eval { require LWP::UserAgent }
or do {
...
"Failure loading LWP::UserAgent: $@";
next;
};