Example projects and programming tutorials for the Rux language.
| Package | Description |
|---|---|
| Hello | Print "Hello, World!" — the minimal Rux application |
| Greeting | Iterate over a string array and print greetings in multiple languages |
| Primitive | Declare and print all primitive types: integers, floats, booleans, and characters |
| Factorial | Calculate and print factorial values with a loop |
| Array | Use a dynamic array with manual memory management (Alloc, Zero, Free) |
Each example is a standalone Rux package with its own Rux.toml.
cd Hello
rux runIf necessary, install the dependencies first:
cd Hello
rux install
rux run