Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    use Storable qw(nstore);
    ...
    
    ## store to disk
    nstore (\%data, "data.nstore");
    
  2. or download this
    use strict;
    use warnings;
    use Storable qw(retrieve);
    
    my %data = %{ retrieve("data.nstore") };