
Nim (programming language)
Nim is a statically typed, imperative programming language with a powerful macro system that tries to give the programmer ultimate power without compromises on runtime efficiency.
PyPy is a fast, compliant alternative implementation of the Python language (2.7.1). It has several advantages and distinct features: - Speed: thanks to its...
pypy is a fast, compliant alternative implementation of the python language (2.7.1). it has several advantages and distinct features:
speed: thanks to its justintime compiler, python programs often run faster on pypy. memory usage: large, memoryhungry python programs might end up taking less space than they do in cpython. compatibility: pypy is highly compatible with existing python code. it supports ctypes and can run popular python libraries like twisted and django. sandboxing: pypy provides the ability to run untrusted code in a fully secure way. stackless: pypy can be configured to run in stackless mode, providing microthreads for massive concurrency. as well as other features.
python programming procedural jit specializing-compiler