Relation between REPL, interpreter and compiler
问题 From Wikipedia: The REPL is commonly misnamed an interpreter. This is a misnomer—many programming languages that use compilation (including bytecode compilation) have REPLs, such as Common Lisp and Python. From a reply to this post 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. I was wondering if REPL [del] always exists [/del] exists only for an