Help for this page

Select Code to Download


  1. or download this
    package My::App;
    
    ...
    use base qw(CGI::Application);
    
    use BLL::OtherPackage qw( sub_in_other_file );
    
  2. or download this
    package BLL::OtherPackage;
    
    ...
       # the 'use base' or @ISA for that matter. What an abuse.
    }
    1;