#!/usr/bin/perl -- use strict; use warnings; use MyStuff; Main( @ARGV ); exit( 0 ); sub Main { MyStuff::RunCGI({ 'dbconfig' => { } }); ## print MyStuff::ThisPage( CGI->new({ page => 'thisone', debug=>1,in => 'making sure this works, dev, debug'} ) ); }