Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/env perl
    use 5.011; # implies strict + feature 'say'
    ...
    
    create() unless -e INIFILE;
    show()
    
  2. or download this
        my $ini = Config::Tiny->new;
        $ini->{$_} = $config{$_} for keys %config;