A compiler for a C-like programming language, work in progress.
This is an experimental compiler for a C-like language. Made for simplicity and effectiveness, it blends proven approaches with modern features.
// Code example
int main() {
uint x = 35;
int foo = 5 + 2*x;
return foo;
}
Source Code