Skip to content

Instantly share code, notes, and snippets.

@jquelin
Created November 13, 2009 18:23
use Moose;
use MooseX::Types::Moose qw{ Int Str };
has frobnizer => ( is=>'ro', isa=>Str, required=>1 );
has funger => ( is=>'rw', isa=>Int, lazy_build=>1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment