Help for this page

Select Code to Download


  1. or download this
    use Exporter; 
    use vars qw(@ISA @EXPORT);
    
    @ISA=qw(Exporter);
    @EXPORT=qw( ... );
    
  2. or download this
    package MyApp::Foo;
    
    ...
    # subs here
    
    1;