![]() |
|
Clear questions and runnable code get the best and fastest answer |
|
PerlMonks |
Re: Using the perl modules depends upon the availability of another module.by ikegami (Patriarch) |
on Dec 08, 2005 at 07:41 UTC ( #515152=note: print w/replies, xml ) | Need Help?? |
It would be use Module1 || use Module2, but that doesn't work because use dies on failure. You might try to wrap the use in an eval BLOCK, but that doesn't work because of compile-time vs run-time issues. You could succeed, however, by following the advice given in "use" dynamic module. Alternativly, eval EXPR does the trick:
In Section
Seekers of Perl Wisdom
|
|