Help for this page

Select Code to Download


  1. or download this
    package My::Module;
    use base 'Exporter';
    ...
    # defining functions for export.
    
    1;
    
  2. or download this
    use strict;
    use My::Module qw($foo some_sub @stuff);
    use vars qw($foo @stuff);
    
    # etc