ZC is a dialect of the C programming language made to "parody" Zig.
ZC uses the clang compiler (and only it), because it uses clang blocks for lambda functions, and requires the libblocksruntime library to build
To start new project with zc:
zc init your_project_nameTo build file from code/ directory:
zc build file_without_extAnd to run:
zc run file_without_extYou also can build without debugging info with release instead of build
ZC has testing system, similliar to Zig's. To make testing file:
$test(your_test_name){
// do something
return noerropt; // no errors
}And to build and run file with tests:
zc test fileMore examples on ./code/passed