Help for this page

Select Code to Download


  1. or download this
    use constant NOTICE => 'please be sure that XXX is installed first';
    
    # many lines later
    
    print NOTICE;
    
  2. or download this
    if ($language eq 'perlmonks_terse') {
        use constant NOTICE => 'do perlfaq XXX, use strict; and use CGI;';
    ...
    else {
        use constant NOTICE => 'please be sure that XXX is installed first
    +';
    }