Programming language implementation
System for executing computer programs / From Wikipedia, the free encyclopedia
Dear Wikiwand AI, let's keep it short by simply answering these key questions:
Can you list the top facts and stats about Programming language implementation?
Summarize this article for a 10 years old
SHOW ALL QUESTIONS
In computer programming, a programming language implementation is a system for executing computer programs. There are two general approaches to programming language implementation:[1]
- Interpretation: The program is read as input by an interpreter, which performs the actions written in the program.[2]
- Compilation: The program is read by a compiler, which translates it into some other language, such as bytecode or machine code. The translated code may either be directly executed by hardware, or serve as input to another interpreter or another compiler.[2]
System for executing computer programs