ruchy 4.2.0

A systems scripting language that transpiles to idiomatic Rust with extreme quality engineering
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Test 03: Comment between function arguments
fn add_three(a: i32, b: i32, c: i32) -> i32 {
    a + b + c
}

let result = add_three(
    1,
    # Second argument
    2,
    # Third argument
    3
)