Help for this page

Select Code to Download


  1. or download this
    
    package My::Config;
    ...
    
    1;
    
  2. or download this
    package My::Base;
    
    ...
    
    1;
    
  3. or download this
    !/usr/bin/perl
    
    ...
    $config->base_directory("/home/otheruser/");
    
    print $config->base_directory() , "\n";
    
  4. or download this
    #!/usr/bin/perl
    
    ...
    $object->config->base_directory("/home/otheruser/");
    
    print $object->config->base_directory() , "\n";
    
  5. or download this
    #!/usr/bin/perl
    
    ...
    
    print $object->base_directory() , "\n";