Hi, I was just wondering if there is any technical difference between a REPL and an interpreter?
+2
A:
Interactive interpreters use REPLs. An interpreter is not required to have one. You can run Python, for example, in non-interactive mode (on a file) and it will not use a read-eval-print loop.
Nathon
2010-08-06 14:34:14