#!/usr/local/bin/perl -w

foreach $num ('a' .. 'z') {
	print "<a href=#$num>$num</a>\n";
}
