http://www.perlmonks.org?node_id=1018023


in reply to Dear Moose docs...

how do you call the accessor methods?

Just as you did. The interesting question the documentation hasn't made clear to you is "How do I initialize attributes when I call the constructor?":

my $p = Point->new( x => 10, y => 20 );

The Objects chapter in the Modern Perl book may be a more gentle (and complete) introduction to Moose.