in reply to Re: On Scripting versus Compiled solutions
in thread On Scripting versus Compiled solutions
For that matter, even C compilers often translate the code to an intermediate langauge before outputting the executable.Yes, but for completely different reasons. C compilers do that to avoid the N*M problem, that is, having to compile N languages on M platforms. Without an intermediate language, one would have to write N*M compilers - with an intermediate language, one only needs to write N + M compilers.
It doesn't interpret the intermediate language - by the time runtime starts, the intermediate language is gone.
Abigail
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: On Scripting versus Compiled solutions
by hardburn (Abbot) on Mar 09, 2004 at 16:01 UTC | |
by Abigail-II (Bishop) on Mar 09, 2004 at 16:16 UTC | |
by hardburn (Abbot) on Mar 09, 2004 at 16:21 UTC |