Help for this page

Select Code to Download


  1. or download this
    package Project::Config;
    use warnings FATAL => qw(all);
    ...
    ...
    sub AUTOLOAD {...}
    INIT {...}
    
  2. or download this
    use Project::Conifg;
    
  3. or download this
    package MyApp;
    use strict;
    ...
      require 'Project/Config.pm';
      Project::Config::import(qw(foo bar));
    }