Help for this page

Select Code to Download


  1. or download this
    use Storable qw/thaw/;
    use Data::Dump qw/dump/;
    ...
    my $contents = join '', <$fh>;
    
    dump thaw $contents;
    
  2. or download this
    $contents = decode_utf8($contents);
    
  3. or download this
    $ perl -v
    
    ...
    ...
    $ perl -MStorable -le 'print Storable->VERSION'
    2.20