Help for this page

Select Code to Download


  1. or download this
    if ($Action eq 'foo') {
        require 'foo.pl';
        &foo();
    ...
        require 'baz.pl';
        &baz();
    }
    
  2. or download this
    if(  $ENV{DEBUG}  ) {
        require 'foo.pl';
        require 'bar.pl';
        require 'baz.pl';
    }