in reply to my first module

Try the following from a command prompt:
perl -v
I am guessing the version you will see is something like 5.005_03, which did not have the "our" keyword.

If so then I suggest:

use vars qw(@ISA @EXPORT_OK);
Note that I recommend @EXPORT_OK over @EXPORT because of what is said in perldoc Exporter...