The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#=Erbsenzähler? Nee nur Kartoffeln!
for 5..7 -> $count {
	my $potato = "$count potato, ";
	NEXT {
		print $potato;
	}
	LAST {
		print $potato, "more.";
	}
}