Skip to content

Instantly share code, notes, and snippets.

@ynonp
Created July 2, 2012 10:01
Show Gist options
  • Save ynonp/3032412 to your computer and use it in GitHub Desktop.
Save ynonp/3032412 to your computer and use it in GitHub Desktop.
use v5.14;
package Person;
use Moose;
use Moose::Util::TypeConstraints;
has 'eyecolor' => (
is => 'ro',
isa => enum [qw/gray blue brown green/];
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment