- or download this
package MyFirst;
use strict; use warnings; use feature 'say';
...
}
1;
- or download this
package MySecond;
use strict; use warnings; use feature 'say';
...
}
1;
- or download this
use strict; use warnings; use feature 'say';
...
MySecond::do_that();
__END__
- or download this
perl 1203778.pl
Hello from MyFirst
Hello from MySecond
This is a warning!
- or download this
$ cat logfile
This is a debug message
This is a warning!