Reox Standard Library

The official modules that ship with the Reox compiler. All available out of the box.

Official Modules

core

built-in1.0.0

Core language utilities — math, memory, printing, and string operations.

core::mathcore::memcore::printcore::string
n
@neolyx
use core;

ui

stable1.0.0

Declarative UI framework — controls, graphics primitives, and window management.

ui::controlsui::graphicsui::window
n
@neolyx
use ui;

io

stable1.0.0

I/O and networking — file system access, network sockets, and serial communication.

io::fileio::networkio::serial
n
@neolyx
use io;

ai

experimental1.0.0

AI integration — assistant context, machine learning inference, and model loading.

ai::assistantai::ml
k
@ketivee
use ai;

Manage Packages

Use the Reox Package Manager CLI to manage dependencies in your project.

reoxc pkg add <package_name>
reoxc pkg init