Help for this page

Select Code to Download


  1. or download this
    my $config = $parser->parse(*CONFIG);
    
  2. or download this
    my $config = $parser->parse('main::CONFIG');
    
  3. or download this
    my $config = $parser->parse('*main::CONFIG');
    
  4. or download this
    sub something_that_stringifies { "$_[0]" }
    my $fh = something_that_stringifies *CONFIG;
    my $config = $parser->parse($fh);