Help for this page

Select Code to Download


  1. or download this
    package Foo;
    use Role::Tiny::With; with "Foo::Bar";
    ...
      my $val = $self->_bb ( $args->{'foo'} );
    }
    1;
    
  2. or download this
    package Foo::Bar;
    use Role::Tiny;
    ...
      my $self, $fazoo ) = @_;
    }
    1;
    
  3. or download this
    package Foo2;
    use Role::Tiny::With; with "Foo::Bar";
    ...;
    1;