package MyConstants; require Exporter; use base qw(Exporter); @EXPORT = qw(C1 C2); use constant C1 => 'blah'; use constant C2 => 'foo'; 1;