Help for this page

Select Code to Download


  1. or download this
    { # braces open and close scopes
    
    ...
    # message. Without "use strict", it will fail
    # silently.
    print $variable;
    
  2. or download this
    {
      package Web::Server;
    ...
      # shortcut for @Web::Server::ISA
      our @ISA = ('Server');
    }
    
  3. or download this
    package MyConfig;
    our $inputdir     = "/cygsrive/d/acec/CDRe/data/input/$swname";
    ...
    our $archivedir   = "/cygsrive/d/acec/CDRe/data/archive/$swname";
    our $duplicatedir = "/cygsrive/d/acec/CDRe/data/duplicate/$swname";
    our $baddir       = "/cygsrive/d/acec/CDRe/data/bad/$swname";
    
  4. or download this
    #!/usr/bin/perl
    
    require "./def_variable.pl";
    print "INPUT : $MyConfig::inputdir\n";