in reply to [OT] Use a Storable.pm object without Perl

Do you mean Storable? If so it could be possible to factor out the code from Storable.xs that reads the stored into a C library that can be used from other languages. Finding how to represent the perl types would be the tricky part of course.

/J\

Replies are listed 'Best First'.
Re^2: [OT] Use a Storage.pm object without Perl
by Joost (Canon) on Aug 16, 2006 at 15:34 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);