in reply to "animal"

I wonder what might be some ways that we could store the collected data instead of just dumping it when we are done. I am sure that could be put together but what might be a elegant way.

Replies are listed 'Best First'.
Re^2: "animal"
by Aristotle (Chancellor) on Sep 26, 2002 at 23:01 UTC

    The print Dumper($info); bit already reproduces the data in a form Perl can parse. If dumped to a file, you can use do 'FILE' to read it back in.

    There are more sophisticated approaches of course, but this probably suffices here.

    Makeshifts last the longest.