# XYZ.pm package XYZ; use strict; use warnings; # require Exporter; # # our @ISA=qw/Exporter/; # our @EXPORT_OK = qw/$PI CONST/; our $PI = 355/113; use constant CONST => 42; 1;