解释和编译语言

Interpreted and Compiled Language

听说python是解释型语言,java是编译型语言。这使得 python (通常)更容易快速开发,但比编译语言慢一点。 Java 然而,写起来有点困难,但由于它是编译的,所以运行得更快。 所以我的问题是,是否有可能制作一种为开发而解释的编程语言,然后可以为发布而编译?这样的语言已经存在了吗?

是的,请尝试Racket

是可以开发的编程语言incrementally and can be compiled into bytecode to run on a virtual machine, and has documents and powerful macros that are friendly to newcomers

添加: 你可能想阅读它:

https://www.pypy.org/

https://github.com/root-project/cling