views:

20

answers:

1

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