ruchy 1.27.0

A systems scripting language that transpiles to idiomatic Rust with extreme quality engineering
Documentation
1
2
3
4
5
6
7
8
#[test]
fun test_add() {
    assert_eq(add(2, 3), 5);
}

fun add(a, b) {
    a + b
}