- or download this
#! perl -w
...
# more subs ...
1;
- or download this
#! perl -w
use strict;
...
MyModule::isFile("MyModuleTest.pl");
MyModule::isFile("NotHere");
- or download this
#! perl -w
...
# more subs ...
1;
- or download this
#! perl -w
use strict;
...
$mod->isFile("MyModuleTest.pl");
$mod->isFile("NotHere");