#!/usr/bin/perl # Use our self-styled application module built on the CGI::Application framework # use self; # Create constructor for our application module (self->new()) and execute this module in the desired run mode (self->run()) - The desired run mode is set via the value of a CGI parameter specified by the mode_param() method of this module (see self-styled CGI::Application module package). # my ($application) = self->new(); $application->run(); exit 0;