projects
/
gitmo/MooseX-InsideOut.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
82e9e90036532a182f22845d2fb6134645f9f424
[gitmo/MooseX-InsideOut.git]
/
t
/
lib
/
InsideOut
/
SubArray.pm
1
use strict;
2
use warnings;
3
4
package InsideOut::SubArray;
5
6
use MooseX::InsideOut;
7
extends 'InsideOut::BaseArray';
8
9
has sub_foo => ( is => 'rw' );
10
11
1;
12