Subject: | synopsis syntax error |
This line has one too few close parentheses:
if (defined $it->get('pubDate') { print "publication date found: " . $it->get('pubDate')."\n"; }
should read
if (defined $it->get('pubDate')) { print "publication date found: " . $it->get('pubDate')."\n"; }