Hi, there, I have a question regarding inclusion of the Inline module. How do I enable or disable the module in my script depending on occasions? My case is as follows. My script uses embedded C code, and thus I need to put "use Inline::C" in my script. However, *some* users of my script might not have the Inline module installed, and I wonder in that case how I can disable the "use Inline::C" statement. In other words, I want something like the following pseudo code:
If have Inline module, use Inline::C; Else, do nothing. Is there anything in Perl that can do this? Thanks! Steven