> (Here on perl-beginners, I think non-LOL English is the preferred
> dialect.)
ACK

If you want to run your checks from a perl script, you will need to eval
the code. You could try something like this:

BEGIN {
        eval('use ModuleName');
        die "You need to install ModuleName...\n" if $@;
}


-- 
VI VI VI - The editor of the beast.
- perlhacker.org

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to