The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package Something;
use strict;
sub thing { Something->new(@_) }
our @EXPORT = qw(thing);
use Thing -base;

field color => 'blue';

sub cool {}

1;