Help for this page

Select Code to Download


  1. or download this
    package bar;
    use Moo::Role;
    ...
        is => 'rwp',
        handles => [qw/foo/], # put other methods to be delegated here
    );
    
  2. or download this
    package Foo::Role;
    sub foo {
        print "foo\n";
    }
    
  3. or download this
    package bar;
    use Moo::Role;
    with 'Foo::Role';
    
    # ... other methods