diff options
author | Andy Dougherty <doughera.lafayette.edu> | 1995-12-21 00:01:16 +0000 |
---|---|---|
committer | Andy Dougherty <doughera.lafayette.edu> | 1995-12-21 00:01:16 +0000 |
commit | cb1a09d0194fed9b905df7b04a4bc031d354609d (patch) | |
tree | f0c890a5a8f5274873421ac573dfc719188e5eec /lib/Exporter.pm | |
parent | 3712091946b37b5feabcc1f630b32639406ad717 (diff) | |
download | perl-cb1a09d0194fed9b905df7b04a4bc031d354609d.tar.gz |
This is patch.2b1g to perl5.002beta1.
cd to your perl source directory, and type
patch -p1 -N < patch.2b1g
This patch is just my packaging of Tom's documentation patches
he released as patch.2b1g.
Patch and enjoy,
Andy Dougherty doughera@lafcol.lafayette.edu
Dept. of Physics
Lafayette College, Easton PA 18042
Diffstat (limited to 'lib/Exporter.pm')
-rw-r--r-- | lib/Exporter.pm | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/Exporter.pm b/lib/Exporter.pm index 8c4368c0ef..382ee859f4 100644 --- a/lib/Exporter.pm +++ b/lib/Exporter.pm @@ -1,6 +1,15 @@ package Exporter; -=head1 Comments +=head1 NAME + +Exporter - provide inport/export controls for Perl modules + +=head1 SYNOPSIS + +use Module; +use Module qw(name1 name2 :tag /pattern/ !name); + +=head1 DESCRIPTION If the first entry in an import list begins with !, : or / then the list is treated as a series of specifications which either add to or |