Help for this page

Select Code to Download


  1. or download this
    use warnings;
    use strict;
    ...
    sub get_config { return "Foo!" }
    
    1;
    
  2. or download this
    use warnings;
    use strict;
    ...
    sub get_config { return "Bar!" }
    
    1;
    
  3. or download this
    use warnings;
    use strict;
    ...
    
    print $foo->(), "\n";  # prints "Foo!"
    print $bar->(), "\n";  # prints "Bar!"