Help for this page

Select Code to Download


  1. or download this
    use Data::Dumper;
    my %h = (
    ...
    open my $fh, '>', 'hash.pl' or die "nope: $!";
    print $fh Dumper(\%h);
    close $fh or die "fasten seat belts. Last orders: $!";
    
  2. or download this
    my %h = %{ require 'hash.pl' };
    die "read hash dinn' work: $@" if $@;