Related articles |
---|
Execution of a program in scripting language? pengyu.ut@gmail.com (Peng Yu) (2010-01-18) |
Re: Execution of a program in scripting language? dot@dotat.at (Tony Finch) (2010-01-19) |
Re: Execution of a program in scripting language? rangsynth@gmail.com (Robin Holmes) (2010-01-20) |
Re: Execution of a program in scripting language? cr88192@hotmail.com (BGB / cr88192) (2010-01-21) |
Re: Execution of a program in scripting language? arnold@skeeve.com (2010-01-21) |
Re: Execution of a program in scripting language? kamalpr@gmail.com (kamal) (2010-02-08) |
Re: Execution of a program in scripting language? gah@ugcs.caltech.edu (glen herrmannsfeldt) (2010-02-10) |
From: | Peng Yu <pengyu.ut@gmail.com> |
Newsgroups: | comp.compilers |
Date: | Mon, 18 Jan 2010 07:23:29 -0800 (PST) |
Organization: | Compilers Central |
Keywords: | interpreter, question |
Posted-Date: | 19 Jan 2010 00:08:42 EST |
I'm looking for some references on how a scripting program run so that
I can understand the runtime behavior better. But I don't find such a
reference. For example, I checked Programming Language Pragmatics by
Michael L. Scott. It seems only mentioned the programming language
that needs compilation.
Could somebody pointing me some reference on how a script is executed
so that I can understand the runtime behavior better?
Also, why the compiled code in java and perl are in general slower
than the equivalent code in C or C++?
[Because java and perl are compiled to internal forms that are then interpreted, or in
Java's case, sometimes translated at runtime. -John]
Return to the
comp.compilers page.
Search the
comp.compilers archives again.