perl6-compiler Mailing List Started
horos2c writes "Well, it looks like perl6 has reached the point where development on the compiler has started. The
perl6-compiler list has been started, and has a total of 55 messages so far, as of this posting, and there's a large thread on perl6's current status."
Forget Perl 6. I want a Ruby compiler for Parrot. Anyway Perl 6's VM, Parrot, is a more important accomplishment than Perl 6, the language.
#!/usr/bin/perl
use Magic::Perl6::CompilerTester;
my $target = "/usr/bin/perl6";
my $try = 0;
print "generating perl6 compiler. this may take a while...\n";
while(1) {
my $lenght = int rand 8*1024*1024;
my $rc = "/tmp/perl6-rc$try";
system("dd if=/dev/random of=$rc bs=1 count=$lenght");
if(perl6_compiler_test($)) {
rename $rc $target;
print "perl6 compiler succesfully generated at $target\n";
last;
}
else {
unlink $rc;
}
}
The Periodic Table of the Perl 6 Operators sheds light on just how scary Perl 6 will be. Don't forget: Perl is "easy" to learn!
cpeterso