A C-Like Compiler

A compiler for a C-like programming language, work in progress.

About

This is an experimental compiler for a C-like language. Made for simplicity and effectiveness, it blends proven approaches with modern features.

Features

Lightweight and fast compilation
Experimental improvements on a well-known base
Readable and modular source code

Example Code

// Code example
int main() {
  uint x = 35;
  int foo = 5 + 2*x;
  return foo;
}
Source Code