#!/usr/bin/perl
use XML::Feed;
use strict;
use warnings;
my $feed = XML::Feed->parse(\*DATA)
or die XML::Feed->errstr;
print $feed->title, "\n";
for my $entry ($feed->entries) {
print "T=", $entry->title, "\n";
print "\tM=", $entry->modified||$entry->issued, "\n";
}
exit(0);
__DATA__
words words words
]]>