Help for this page

Select Code to Download


  1. or download this
    package Foo;
    use Moose;
    use Carp;
    
    Foo->new->carp;
    
  2. or download this
    package Foo;
    use Moose;
    ...
    has after => (is => 'ro', default => 'yay');
    
    print "It worked " . Foo->new->after;