1 use XML::RSS;
2
3 my $rss = new XML::RSS;
4
5 $rss->channel(
6
7         title => 'azurance.com',
8         link =>'http://www.azurance.com',
9         description =>'Open Source and Security Consulting',
10 );

Example 2: Using the channel() method to populate the <channel> element.

Back to Article