Compy

Python-like syntax → readable C code
Install Binary (0.1.0 Windows only)
github.com/Cygnux1/Compy

About

Compy is a very small transpiler that takes Python-looking code and turns it into plain C.

It produces readable output, adds no runtime, and supports dropping real C code with __inline_c__ and __inline_c_global__ blocks.

What it understands

Compy stdlib (included when you use it)

Quick usage

  1. Write code in .cmpy file
  2. Run: ./compy yourfile.cmpy
  3. Compile generated file: gcc out.c -O3 -o program
  4. Run: ./program

Output always goes to out.c in current directory.
Compiler itself is tiny (~400 LOC).