The Native Language of NeolyxOS
Declarative UI simplicity meets system-level performance.
Built in just 0 LOC of pure Rust.
window Calculator {
title: "Calculator"
size: (400, 300)
@Bind result: string = "0"
view {
vstack(gap: 12) {
text(result)
.font_size(32)
.color(0xFFFFFF)
hstack(gap: 8) {
button("7").on_click(action { append("7") })
button("8").on_click(action { append("8") })
button("9").on_click(action { append("9") })
}
}
}
}Zero Fat. 100% Muscle.
Our compiler is built entirely from scratch in Rust. No heavy dependencies, no bloated toolchains. Just lightning-fast AOT compilation to native binaries.
Lexer
Parser
Type Checker
IR / Codegen
Native Performance
Direct integration with NeolyxOS syscalls and rendering primitives. No virtual machine overhead, no garbage collection pauses.
Declarative UI
Build complex interfaces with simple, composable syntax inspired by modern frameworks, built right into the language grammar.
Memory Safe
Immutable by default. The compiler strictly enforces mutability and ownership, preventing data races and memory leaks.
How We Compare
| Capability | Reox |
|---|---|
| UI Paradigms | Native Declarative |
| Memory Safety | Compiler Enforced |
| Execution | AOT Compiled |
| C FFI Overhead | Zero |
| Primary Target | NeolyxOS |
Start Building
Get up and running in seconds on your preferred OS.
reoxc pkg update reox@latestcurl -fsSL https://reox.lang/install.sh | bashcargo install reoxc --git https://github.com/ketiveeai/reox