I am making a very, very simple module (it is the first I've ever wrote):
package Master::Math;
use 5.12.4;
use strict;
use warnings;
require Exporter;
our @ISA = qw(Exporter)
our %EXPORT_TAGS = (
'all' => [ qw(
max
=cut
1; # End of Master::Math
When I run use this in my program, I get the error
Invalid version format (non-numeric data) at C:/Perl/lib/Master/Math.pm line 3, near "package Master::Math
" syntax error at C:/Perl/lib/Master/Math.pm line 3, near "package Master::Math
require Exporter" Compilation failed in require at C:\MainDev\myperl\max.pl line 3. BEGIN failed--compilation aborted at C:\MainDev\myperl\max.pl line 3.
What do I need to fix this? Thanks!
{}icon to format it not the"icon. I was about to edit it for you, but I think the way you quoted it messed up the code. Please re-edit your question, re-paste your module source, select the source code, and click the{}icon to format it correctly. Thanks. – Keith Thompson Nov 20 '11 at 21:26use strict;line as shown,package Master::Math;according to the error message) that was generating the complaint. If you show the code and the error, please make sure the code exactly matches what you're executing. – Jonathan Leffler Nov 20 '11 at 21:47