Add the following packages libalgorithm-diff-perl libspiffy-perl libtext-diff-perl...
[pkg-perl] / deb-src / libspiffy-perl / libspiffy-perl-0.30 / t / Something.pm
1 package Something;
2 use strict;
3 sub thing { Something->new(@_) }
4 our @EXPORT = qw(thing);
5 use Thing -base;
6
7 field color => 'blue';
8
9 sub cool {}
10
11 1;