Help for this page
package header; @ISA=('Exporter'); @EXPORT=('camel'); use constant camel => 'flea-ridden'; 1; # I'm a well-behaving module
# program.pl use header; *header::camel=*::camel; print &camel; # Note that you have to call camel as a function here.