Help for this page

Select Code to Download


  1. or download this
    sub new_CGI {
        defined $Module::CGI or $Module::CGI = CGI->new();
        return $Module::CGI;
    }
    
  2. or download this
    my $q = Module::new_CGI;
    
  3. or download this
    use Module;
    use ModB;
    ...
    my $m = Module->new();
    my $mb = ModB->new($m);
    my $mc = ModC->new($m);