Perligata

Ik weet dat veel Geeks redelijk geschift zijn, maar Perligata is nog een klasse apart. A Perl module — Lingua::Romana::Perligata — that makes it possible to write Perl programs in Latin.

Even proeven:

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

use Lingua::Romana::Perligata;

maximum inquementum tum biguttam egresso scribe.
meo maximo vestibulo perlegamentum da.
da duo tum maximum conscribementa meis listis.

dum listis decapitamentum damentum nexto
fac sic
nextum tum novumversum scribe egresso.
lista sic hoc recidementum nextum cis vannementa da listis.
cis.

Via Lingua::Romana::Perligata wordt dit

print STDOUT 'maximum:';
my $maxim = ;
my (@list) = (2..$maxim);

while ($next = shift @list)
{
print STDOUT $next, "n";
@list = grep {$_ % $next} @list;
}

Nerds! Je zal maar eens een project van zo iemand erven 🙂 WTF.