- or download this
$notice = 'please be sure that XXX is installed first';
print $notice;
- or download this
sub notice { 'please be sure that XXX is installed first' }
print notice;
- or download this
sub print_notice {
'please be sure that XXX is installed first'
}
print_notice;