in reply to Lost JJC and XML
At various points you have if/elsif like:
if ($gram =~ /.../gi { ... }
It should be:
if ($gram =~ /.../gi) { ... }
Regards,
PN5
|
---|
In Section
Seekers of Perl Wisdom
in reply to Lost JJC and XML
At various points you have if/elsif like:
if ($gram =~ /.../gi { ... }
It should be:
if ($gram =~ /.../gi) { ... }
Regards,
PN5
|
---|