Lexical-Attributes
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;
}
( run in 0.242 second using v1.01-cache-2.11-cpan-65fba6d93b7 )