Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re: Perl 5.8.0 and Storable

by JayBonci (Curate)
on Dec 14, 2002 at 08:51 UTC ( [id://219843]=note: print w/replies, xml ) Need Help??


in reply to Perl 5.8.0 and Storable

The quick answer is no. I am using stock debian perl:
#!/usr/bin/perl -w use strict; use Storable; use Data::Dumper; my %junk = map { $_ => rand()} (1..50); my $before = Data::Dumper->Dump([%junk]); my $frozen = Storable::freeze(\%junk); my %thawed = %{Storable::thaw($frozen)}; print "THEY MATCH\n" if $before eq Data::Dumper->Dump([%junk]);
jaybonci@starlite:~/perl/pm$ perl -v

This is perl, v5.8.0 built for i386-linux-thread-multi
You might want to show us part of what you're trying to do, and then perhaps we can be more specific.

    --jb

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://219843]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (6)
As of 2024-04-25 11:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found