ROX Language Compiler
ROX is a minimal, clarity-first programming language built on a simple belief:
Programming logic should not have to fight the language.
ROX removes implicit behavior, hidden conversions, and syntactic tricks so that expressing logic feels direct and mechanical rather than negotiated.
ROX compiles .rox source files into C++20 ( .cc ), which are then compiled into native executables using clang++ .
This repository contains the ROX compiler implementation written in C++20.
Why ROX Exists
In many languages, expressing simple logic often requires navigating:
Implicit type coercions
Silent conversions
... continue reading