caedes has asked for the wisdom of the Perl Monks concerning the following question:
Here is the main module "Zephir.pm":
And here is one of the sub libraries:package Zephir; use strict; require 'Zephir-General.pl'; require 'Zephir-Cast.pl'; require 'Zephir-Gedit.pl'; require 'Zephir-Auth.pl'; 1;
So, is this the correct way to do this or is there a more elegant way (baring a complete OO overhaul). :-)package Zephir; use strict; sub do_stuff(){ # does something profound... } 1;
-caedes
|
|---|