v0.1 Alpha
Install Ryx
Get the Ryx compiler, standard library, and build pipeline. Available for macOS, Linux, and Windows.
Prerequisites
Ryx transpiles to C11-23. To build production binaries, you need a C compiler
installed on your system. The development mode (ryx run) includes its own internal TCC engine.
macOS / Linux
Install Xcode Command Line Tools or GCC/Clang.
xcode-select --install
Windows
Install MSVC (via Visual Studio) or MinGW.
Download & Install
Run the following command in your terminal. This will download the latest binary and add it to your system's PATH.
# Download and execute the install script
$ curl -fsSL https://ryx-lang.org/install.sh | bash
# Install via PowerShell
> iwr -useb https://ryx-lang.org/install.ps1 | iex
Verify Installation
Restart your terminal, then run the following command to verify the compiler is installed.
$ ryx --version
ryx v0.1.0-alpha (razen-core)
You're ready to build.
Write your first Ryx program, explore the memory model, or dive into the standard library.