How do you write a module for Perl? In Python you can use:
# module.py
def helloworld(name):
print "Hello, %s" % name
# main.py
import module
module.helloworld("Jim")
|
|
|
A class:
A module that exports functions:
A script that uses these:
|
|||||||||||||||
|
|
Basically you create a file named
Then the program that uses the module will look like:
You may want to organize your modules in a hierarchical (and hopefully logical) way. To do so you create a tree of directories like: Your/Module.pm And then in your program:
There are more facilities to export functions and variables from your module, you can take a look at Henning Koch's "Writing serious Perl: The absolute minimum you need to know". |
||||
|
|
|
An "exact" equivalent of your Python example in Perl would look like this:
For more, see the entry for /I3az/ |
||||
|
|
|
The last third of Intermediate Perl is devoted to module creation. Whenever you want to know how to do something in Perl, check perltoc, the table of contents for the Perl documentation:
Several parts of the core Perl documentation can help you: Good luck, |
|||
|
|
|
One minor detail that the answers so far haven't mentioned is that, if you have a (preferably small) module which is purpose-specific enough that it will never be reused, you can put it into the same file as the main program or another package:
This isn't used often because it gives you a package that's defined in a file whose name isn't the same as the package's, which can get confusing because you have to Also note that the |
|||
|
|
|
The most traditional way of setting up a module is as follows:
and as others have said, you can use it like so:
|
|||
|
|
|
h2xs -XA -n My::Module h2xs is a utility that comes as standard with perl, intended for assisting in building linked modules including linked C headers/code, but which can be used to build a complete skeleton of a pure perl module (with the -XA flags), including things like a test directory, a README file, a Makefile, and a Manifest. (a good article outlining the details here: http://perltraining.com.au/tips/2005-09-26.html ) It's kinda old-school, but it's worth looking at even if just for all the reminders it gves you about getting everything right (tests, documentation, version numbers, export and export_ok lists, all the easy-to-forget stuff...) You'll end up with a "Module.pm" file inside a "My" directory (from the "My::Module") that looks like this:
|
||||
|
|