package mymodule; require Exporter; @ISA = qw(Exporter); @EXPORT_OK = qw(NAME); use constant NAME => 'Alex'; package main; print NAME;