| June 2001 | Making a Module |
sub new
{
my (%parameters) = @_;
my %self;
#some other initialization code and filling %self
return bless (\%self);
}
|
use Some::Module; $object = new Some::Module (%parameters); |
|
| Copyright © 2001 R. Geoffrey Avery |