Lexical-Attributes
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
t/Lowest.pm view on Meta::CPAN
use LA_Base;
our @ISA = qw /LA_Base/;
#
# Ordinary Perl OO module.
#
sub new {
my $class = shift;
bless {} => $class;
}
sub key1 {
my $self = shift;
$$self {key1};
}
sub set_key1 {
my $self = shift;
$$self {key1} = shift;
}
use strict;
use warnings;
#
# Ordinary Perl OO module.
#
sub new {
my $class = shift;
bless {} => $class;
}
sub name {
my $self = shift;
$$self {name};
}
sub set_name {
my $self = shift;
$$self {name} = shift;
}
view all matches for this distributionview release on metacpan - search on metacpan
( run in 0.850 second using v1.00-cache-2.02-grep-82fe00e-cpan-a086c87fca4 )