Help for this page

Select Code to Download


  1. or download this
    BEGIN {
        if( $ENV{USE_XYZ}) {
    ...
            Foo::Bar->import();
        }
    }
    
  2. or download this
    use if $ENV{USE_XYZ}, 'Foo::Bar';