ruchy 3.23.0

A systems scripting language that transpiles to idiomatic Rust with extreme quality engineering
Documentation
1
2
3
4
5
6
7
8
// math_module.ruchy
export fun add(a: i32, b: i32) -> i32 {
    return a + b
}

export fun multiply(a: i32, b: i32) -> i32 {
    return a * b
}