http://www.perlmonks.org?node_id=440770


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