use Hello; # default list use Hello qw(greet abandon); # just those use Hello (); # nothing at all |
use Exporter; @ISA = qw(Exporter); |
@EXPORT = qw(smile greet handshake); @EXPORT_OK = qw(wave farewell abandon); |
| Forward to Regular expressions
Back to Module basics Up to Stages of a Perl Programmer section index Up to YAPC 2000 course index |
YAPC 2000: Stages of a Perl Programmer - 34
Copyright © 2000, Nathan Torkington
|