projects
/
gitmo/Role-Tiny.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
37148395c7eebb5768b1163357cd29f069acd125
[gitmo/Role-Tiny.git]
/
t
/
role-basic
/
lib
/
My
/
Example.pm
1
package My::Example;
2
3
use Role::Tiny 'with';
4
5
with 'My::Does::Basic';
6
7
sub new { bless {} => shift }
8
9
sub turbo_charger {}
10
$My::Example::foo = 1;
11
sub foo() {}
12
13
1;