Help for this page

Select Code to Download


  1. or download this
    BEGIN {
      if ($ENV{USE_XYZ} == 1) {
    ...
        XYZ->import();
      }
    }
    
  2. or download this
    use if $ENV{USE_XYZ}, "XYZ";