ruchy 4.1.1

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
13
// Basic WASM compilation example
// This demonstrates simple arithmetic compilation to WebAssembly

// Simple arithmetic expression
let result = 10 + 20 * 3

// Function definition
fun calculate(x, y) {
    x * y + 100
}

// Call the function
calculate(5, 10)