Skip to content

Instantly share code, notes, and snippets.

@Songmu
Last active December 12, 2015 00:08
Show Gist options
  • Save Songmu/4681030 to your computer and use it in GitHub Desktop.
Save Songmu/4681030 to your computer and use it in GitHub Desktop.
has num => (is => 'rw', isa => 'Int', required => 1, trigger => sub {shift->clear_all} );
has double => (is => 'rw', isa => 'Int', default => sub { shift->num * 2 }, clearer => 'clear_all');
has triple => (is => 'rw', isa => 'Int', default => sub { shift->num * 3 }, clearer => 'clear_all');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment