The Native Language of NeolyxOS
Declarative UI simplicity meets system-level performance.
Simpler than C++, Safer than C, Built for AI.
main.reox


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") })
// ... more buttons
}
}
}
}⚡
Native Performance
Direct integration with NeolyxOS syscalls and rendering primitives. No virtual machine overhead.
🎨
Declarative UI
Build complex interfaces with simple, composable syntax inspired by modern frameworks.
🤖
AI First
First-class keywords for AI assistant integration and context awareness.
Why Reox?
| Feature | Reox |
|---|---|
| UI Syntax | Native |
| Performance | System |
| Simplicity | High |
| AI Native | Yes |
| Target OS | NeolyxOS |