interpreter
Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
interpreter [2006/03/21 21:03] – created smashtv | interpreter [2011/07/27 15:47] (current) – Removed Spam digineural | ||
---|---|---|---|
Line 1: | Line 1: | ||
+ | A software program that executes instructions written in a high level language. There are two ways to run programs written in a high level language. The most common is to compile the program; the other method is to pass the program through an interpreter. The interpreted action runs a program on top of itself. An interpreter translates high level instructions into an intermediate form, which it then executes on the fly. In contrast, a compiler translates high level instructions directly into machine language in a two step process, minimum. Compiled programs generally run faster than interpreted programs. The advantage of an interpreter, | ||