in reply to Re: Prior art reference, and comment
in thread Perl Programming guidelines/rules

What, you really think OO is the only way to archieve this? Don't be silly.
use Backup; Backup::doit config => "/etc/sys-backup.cfg";

works as well as an OO-wrapper.

I've written backup programs in Perl as well. It did use a configuration file, and the functionality was changed without the need to change the interface. And guess what? It wasn't OO!

Abigail