in reply to Re^3: Simple Module Tutorial
in thread Simple Module Tutorial
You copied case 1. Your code does not export any functions, just as the Tutorial says it won't. You need to export the functions before you try to use them that way:
use MyModule qw(&func1);
|
---|