Hacker News new | ask | show | jobs
by danweber 5047 days ago
No one has asked yet, so I guess I have to: is the Perl binary written in Perl?
1 comments

No. The article says:

> The only compiled code in this Perl/Linux system is: Linux Kernel (not currently built with this project), perl, and uClibc.

The Perl 5 compilers that currently exist all produce code that still needs to be linked to the perl library, which itself is written in C, not Perl. (I don't know the current situation for Perl 6).

Rakudo Perl 6 runs on Parrot, which is written in C. Niecza Perl 6 runs on .NET/mono, and its libraries are a mix of Perl 6 and C# code.