jlongino has asked for the wisdom of the Perl Monks concerning the following question:
What would be the proper way to document via the perlpod =EXPORT tag? Through my searches, I've found only one or two examples and the code either don't look quite the same as what I'm using or looks similar but doesn't include anything in the =EXPORT section. Are there considerations for/against the use of export as I've posted? If so, what would be the correct way to document the "correct" version?use Exporter; use vars qw(@ISA @EXPORT); our @ISA = qw(Exporter); our @EXPORT = qw(Keypressed LoadKeyHash);
Note: I've already looked at perldoc and associated man pages and they really don't cover this at all.
@a=split??,'just lose the ego and get involved!';
for(split??,'afqtw{|~'){print $a[ord($_)-97]}
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(jeffa) Re: Perldoc and the =EXPORT tag
by jeffa (Bishop) on Sep 16, 2001 at 22:40 UTC | |
by John M. Dlugosz (Monsignor) on Sep 16, 2001 at 23:50 UTC |