$ cmake -S . -B build -A Win32
$ cmake --build build --config Debug$ py -u scripts/preprocess.py # This preprocess the source code, because c.c doesn't have preprocessor
$ ./c hello.c # hello world
$ ./c c.c c.c hello.c # self hosting$ # copy c.c.exe to root dir
$ py -u scripts/run_tests.pyThis project is a tiny C interpreter inspired by c4. Only works on 32-bit arch becase the program assumes int and pointer has the same size.