Help for this page

Select Code to Download


  1. or download this
    package MyStuff;
    @ISA = 'Exporter';
    ...
    # etc, including those neat functions
    
    1; # An unfortunately necessary annoyance
    
  2. or download this
    use MyStuff qw(neat functions); # Whatever you actually need
    # Proceed to call "neat" and "functions like normal
    # functions.  You only get the ones which you list.  This
    # is a GOOD thing because it makes it easier to track down
    # which function came from where!