http://qs321.pair.com?node_id=1028744

In case you've not seen my blogs.perl.org entry, I've just released Type::Tiny which is something along the lines of MooseX::Types but:

package Cow { use Moo; has name => (is => 'lazy', default => sub { 'Mooington' }) } say Cow->new->name

Replies are listed 'Best First'.
Re: Introducing Type::Tiny
by Your Mother (Archbishop) on Apr 15, 2013 at 16:14 UTC

    Really very nice. After reading through the blog post and some of the Pod I expect to be using this quite a lot. Thank you!

Re: Introducing Type::Tiny
by pemungkah (Priest) on Apr 15, 2013 at 19:46 UTC
    Excellent work, and thank you.