C3++

GitHub Repo

What is C3++?

C3++ is an object-oriented extension of the C3 language. It includes modern features like classes, garbage collection, method calls, inheritance, and more—all compiled using LLVM IR for performance.

Features

Example Code

class Hello {
																							      public:
																							          void say() {
																								        print("Hello from C3++");
																									    }
																									    };
																							    

Get Started

Clone the compiler from GitHub:

git clone https://github.com/RoyPery2010/C3pp

Build and run your first program!