Skip to content

Redstone Language Documentation

Redstone is a minimal compiled language with an LLVM backend.

Contents

Quick Example

red
fn main() {
    let x = 21 * 2;
    print(x); // 42
    return 0;
}

Released under the MIT License.