Beefy Boxes and Bandwidth Generously Provided by pair Networks
Don't ask to ask, just ask
 
PerlMonks  

Re: How do you use the if pragma?

by Anonymous Monk
on Apr 08, 2013 at 20:55 UTC ( #1027597=note: print w/replies, xml ) Need Help??


in reply to How do you use the if pragma?

Re^5: Problems with forking, Re^3: Loading a module at runtime, Re: mention a non-installed module in script, Re: constants wont optimize, Re^3: How to have OS specific code sections in Perl, Re: Variable as module name? (modern perl), Re^2: Redefining Imported Subs: of scope and no, use Module::Implementation
use constant DEBUG => !!( 0 || $ENV{PERL_DEBUG_MYAPPNAME} ); use if DEBUG , qw' Carp::Always '; use Perl::OSType qw' is_os_type '; use if is_os_type('Windows'), qw' Win32::SerialPort '; use if not is_os_type('Windows'), qw' Device::SerialPort '; use if eval { require mod; 1 }, qw' constant haveMod 1 '; use if not exist $INC{'mod.pm'}, qw' constant haveMod 0 '; use if not exist $INC{'MIDI/ALSA.pm'}, 'something::else', ...; perl -we " use if eval{require CGI}, our $cgi = 'CGI'; print $cgi->new +->header " perl -le " use if $ENV{maplat_debug}, lib => 666; print for @INC"

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1027597]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (5)
As of 2023-12-10 22:28 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?
    What's your preferred 'use VERSION' for new CPAN modules in 2023?











    Results (41 votes). Check out past polls.

    Notices?