Can the equivalent of eval and exec exist in a compiled language? If so, how would they be compiled (roughly speaking)?
|
For starters, python is a compiled language, it just does the compilation at runtime. That being said, all that you need to do to implement |
|||||||||
|
|
Certainly, various Lisp environments have had this capability for decades. A Lisp compiler typically works on a per-function basis, and the compiler and runtime system work hand in hand. When asked to |
|||
|
|