in reply to Re: How do I save a nested structure to a file (and read it later)?
in thread How do I save a nested structure to a file (and read it later)?

FreezeThaw will definitely do the job, you might also want to look into Data::Dumper - especially if you want to manually edit the data while it's in the file.
print FILE Dumper(%foo); $bar = <FILE>; %foo = eval{$bar};
  • Comment on Re: Answer: How do I save a nested structure to a file (and read it later)?
  • Download Code