- or download this
package Singleton;
my $singleton;
...
my $class = shift;
$singleton ||= bless {}, $class;
}
- or download this
package SingletonBase;
my $singleton;
...
my $class = shift;
$singleton{ $class } ||= bless {}, $class;
}
- or download this
# encapsulated class data
{
...
return $self;
}