Krux02, that is exactly right. As we know, Nim is a fully compiled language (but also supports some runtime features), I haven't seen any REPL for any compiled languages.
It is the"eval" part that needs runtime and/or an interpreter, this is a basic REPL in Lisp: (loop ( print ( eval ( read ))))
