in reply to Re: How does Perl get to executable code?
in thread How does Perl get to executable code?

It does end up as machine code

Um, no it doesn't. It ends up as bytecode which is then interpreted.

However, understanding the process somewhat is helpful in diagnosing some script failure modes and in understanding the role that BEGIN and friends play. A related area is understanding how modules are loaded, which also has traps for heffalumps near the edges of the envelope.

Premature optimization is the root of all job security
  • Comment on Re^2: How does Perl get to executable code?