in reply to Re^3: perl program compilation
in thread perl program compilation

This node falls below the community's threshold of quality. You may see it by logging in.

Replies are listed 'Best First'.
Re^5: perl program compilation
by ikegami (Patriarch) on Apr 15, 2006 at 17:17 UTC
    Neither. The code to execute is converted into an opcode tree (similar but not quite compilation) and then perl executes the opcodes in the tree (similar, but not quite a virtual machine).
      ikegami,
      it means parsing and execution .right?.
      So "perl" is an interpreter.
        it means parsing and execution .right?

        No, I meant what I said.

        So "perl" is an interpreter.

        No, the convertion from human readable only happens once, and it's not done statement by statement.

        Perl is closer to a virtual machine, like java.

        What's the point of your questions? i.e. Why does it matter?