|
Interpreted programming languages are those that historically, and/or usually, use interpreters to interpret source code line by line, as they run, and output object (machine) code, often interactively, in a simple edit-debug cycle. This makes programming faster and more productive, but usually produces slower running programs. Almost all interpreted languages are garbage collected, use GC. ... [MORE]
|