package Purple::Blovinator; use 5.008003; use strict; use warnings; require Exporter; our @ISA = qw(Exporter); our @EXPORT_OK = qw( toString ); our $VERSION = '1.00'; { sub toString { __PACKAGE__ } sub new { return bless {}, shift } # ... } 1;