Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 275 Bytes

File metadata and controls

21 lines (17 loc) · 275 Bytes

Python++

Build the PythonPP compiler

ocamlbuild -pkgs llvm pythonpp.native

Run the Python compiler and generate llvm code

./pythonpp.native -l example.py > example.out

Run the llvm code

lli example.out

Run tests

make test