Help for this page

Select Code to Download


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