Help for this page

Select Code to Download


  1. or download this
    our %EXPORT_TAGS = (
         CONSTANTS => [qw(FOO)], # and other constants
    );
    our @EXPORT_OK;
    Exporter::export_ok_tags('CONSTANTS'); # populate the @EXPORT_OK
    
  2. or download this
    BEGIN { P->import(':CONSTANTS'); }