RosettaCodeData/Task/Classes/Perl/classes-2.pl

13 lines
237 B
Perl
Raw Permalink Normal View History

2013-04-09 00:46:50 -07:00
{
package MyClass;
use Moose;
has 'variable' => (is => 'rw', default => 0);
# constructor and accessor methods are added automatically
sub some_method {
my $self = shift;
$self->variable(1);
}
}