Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Moose Constructor

use strict;
use warnings;
use v5.10;

use Person;

my $teacher = Person->new;

package Person;
use Moose;

1;