Help for this page

Select Code to Download


  1. or download this
    use constant HAVE_XYZ => !!$ENV{USE_XYZ};
    use if HAVE_XYZ, 'XYZ';
    ...
    if ( HAVE_XYZ ) {
        XYZ::foo(...)
    }