Sha256: 7ecdfdead5e6b6e6191da54c33af680ea5c4e9c262af3bcaa72244062b92dc34

Contents?: true

Size: 907 Bytes

Versions: 4

Compression:

Stored size: 907 Bytes

Contents

use strict; 
use warnings; 

use Storable; 
use Data::Dumper; 

my %blah = (
            "a" => "A longish string",
            "b" => "35",
            "c" => {
                  "p" => "blah", 
                  "q" => "Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.",
                 },
            "longer_key_name" => "29",
           );

print Storable::freeze(\%blah);

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
rcstorable-0.2.0 spec/store.pl
rcstorable-0.1.4 spec/store.pl
rcstorable-0.1.3 spec/store.pl
rcstorable-0.1.2 spec/store.pl