in reply to Configuration file parsing?

You can use Data::Dumper to write out arbitrary data structures to a file. Then you just require the file when you want to read the data back. This is my preferred way of constructing config files.

chromatic wrote a good node about data persistence in general called Object Serialization Basics. It includes the Data::Dumper method as well as two others.