Download Options
Select what you want to download. All files are for Windows only.
SHA256 (compy.exe):
(compute with:
a8151f67f5433ee5d9d5bcbd5d0e7e7d4565434850057d022695cd67386e3330
(compute with:
certutil -hashfile compy.exe SHA256 in cmd)
Version: early / in-development · Built for Windows (x64)
Antivirus may flag unknown small exes — it's normal for hobby tools.
How to Use After Download
- Put
compy.exein any folder. - Optional: Add to PATH for easy terminal access:
1. Press Win + S → "Environment Variables" → "Edit the system environment variables" 2. Click "Environment Variables…" → Under "System variables" find "Path" → Edit 3. Add the folder containing compy.exe → OK all dialogs 4. Open new CMD / PowerShell and run
compy.exe - Create your program:
hello.cmpy - Run:
compy.exe hello.cmpy→ createsout.c - Compile:
gcc -o hello out.c(MinGW, MSYS2, or WSL required) - Run your program:
hello.exe
No gcc yet? Quick options:
• Install MinGW-w64 (simple)
• Use MSYS2 (more complete)
• Use WSL + gcc (if you like Linux tools on Windows)
• Install MinGW-w64 (simple)
• Use MSYS2 (more complete)
• Use WSL + gcc (if you like Linux tools on Windows)
What's Included
- compy.exe — the compiler (~100–300 KB)
- compy_stdlib.h — optional helpers (concat, input_*, rand_*, file read/write)
- Docs — usage guide, examples
- Source — .cmpy examples + core source code