Help for this page

Select Code to Download


  1. or download this
    use strict;
    use Storable qw(nstore);
    
    my %hash = my_build_hash_sub();
    nstore (\%hash, "hash.nstore.dat");
    
  2. or download this
    use strict;
    use Storable;
    
    my %hash = %{ retrieve("hash.nstore.dat") };