in reply to Re: [OT] Use a Storage.pm object without Perl
in thread [OT] Use a Storable.pm object without Perl

Converting the code to use YAML should work, for relatively simple data (objects won't work).
  • Comment on Re^2: [OT] Use a Storage.pm object without Perl

Replies are listed 'Best First'.
Re^3: [OT] Use a Storage.pm object without Perl
by Anonymous Monk on Aug 17, 2006 at 02:39 UTC
    YAML does objects!
    #!/usr/bin/perl use CGI; use YAML; $q = CGI->new; $q->param(sex,'good'); print Dump($q); $d = Dump($q); $re = Load($d); print Dump($re);