Help for this page

Select Code to Download


  1. or download this
    package config;
    use strict;
    ...
    sub getconfigvariable {
        return $configvariable;
    }
    
  2. or download this
    package functions;
    use strict;
    ...
    sub printconfigvariable {
        print config::getconfigvariable;
    }
    
  3. or download this
    use strict;
    use config;
    ...
    
    print config::getconfigvariable; # 2
    functions::printconfigvariable;  # 1