Help for this page

Select Code to Download


  1. or download this
    BEGIN {
      open(STDERR, ">>E:/foo/bar.err") or die "invisible error";
    ...
    # and then, further down
    ..
    Config::Simple->import_from('E:/foo/foo.conf', \%c);
    
  2. or download this
    BEGIN {
      open(STDERR, ">>$path/bar.err") or die "invisible error";
    ...
    # and then, further down
    ..
    Config::Simple->import_from('$path/foo.conf', \%c);