The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
<html>
<head>
	<title>Playlist { $playlist }</title>
</head>

<body>
<table>

	{
	use Mac::iTunes::Item;
	use CGI qw(:html);
	
	foreach my $item ( @items )
		{
		$string .= Tr( td( $item->title ), td( $item->artist ) );
		}
	
	$string;
	}

</table>
</body>
</html>