in reply to How does Perl get to executable code?
If you are new to perl, this is a sort of question that'll give you a load of answers that don't make a lot of sense. However, I might offer perlguts illustrated for what's going on behind the scenes. Also possibly the perlcompile documentation page
It does end up as machine code - as does everything that ever runs on your system. But very few people work in machine code any more, because it's low level and hard work and gives very little net benefit outside of some very specific niche applications.
Practically speaking though - it is unlikely that you will need to be digging this deep with perl - the whole point of it is that it's sufficiently high level that you don't need to care about (most) implementation specific details.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How does Perl get to executable code?
by GrandFather (Saint) on Nov 11, 2015 at 00:11 UTC |