Top "Interpreter" questions

An interpreter is a program that executes, i.e. performs, instructions written in a programming language.

Debugging code in the Python interpreter

I like testing functions in the Python interpreter. Is it possible to debug a function in the Python interpreter when …

python debugging function interpreter functional-testing
Implementing Brainfuck loops in an interpreter

I want to build a Brainfuck (Damn that name) interpreter in my freshly created programming language to prove it's turing-completeness. …

interpreter brainfuck
How to call the scala interpreter in a Simple Build Tool project?

my scala program is using the compiler interface from scala.tools.nsc.interpreter.IMain. When I am compiling with scalac, …

scala interpreter sbt
How to run an external file from within the scala interactive interpreter (REPL)?

I have a file with several lines of scala code -- imports, list value assignments, etc. that I often use …

scala interpreter read-eval-print-loop
How to write a linker

I have written a compiler for C that outputs byte code. The reason for this was to be able to …

c compiler-construction linker interpreter vm-implementation
Are there any tutorials on building a simple interpreter using Alex + Happy?

I'm working on a school project where I have to build an interpreter for a simple language using Alex + Happy …

haskell parsing interpreter alex happy