Questions tagged [interpreters]

Interpreters are tools to execute a programme or a script by reading statements written in a programming language and performing the actions required according to the semantics of the interpreted language.

Interpreters are tools to execute a programme or a script by reading statements written in a programming language and performing the actions required according to the semantics of the interpreted language.

97 questions
26
votes
10 answers

Why are commonly compiled languages not interpreted for faster iteration?

We're all too familiar with waiting for compilation, especially on large projects. Why isn't a thing to interpret a codebase for quick iterative development instead of generating code for a binary each time? Is that because if we are compiling at…
gust
  • 377
6
votes
3 answers

When an interpreter executes code: Is there a "chain of interpretations" down to the lowest level?

After doing some research and with the help of people on this site, I finally came to an understanding of what interpretation actually is. Essentially, what interpretation means is (correct me if I'm wrong): Scan a piece of code. Come up with a…
NPElover
  • 181
  • 1
  • 3
  • 11