Berp: Difference between revisions

From Rosetta Code
Content added Content deleted
(ceated)
 
(corrected github link)
 
Line 6: Line 6:


==External Links==
==External Links==
* [http://wiki.github.com/bjpop/berp/ Berp official site]
* [http://github.com/bjpop/berp/wiki/ Berp official site]

Latest revision as of 10:51, 1 May 2022

Berp is an implementation of Python. Other implementations of Python.

Berp is an implementation of Python 3. At its heart is a translator, which takes Python code as input and generates Haskell code as output. The Haskell code is fed into a Haskell compiler (GHC) for compilation to machine code or interpretation as byte code.

Berp provides both a compiler and an interactive interpreter. For the most part it can be used in the same way as CPython (the main Python implementation).

External Links