zano 0.1.3

A high-performance Node.js-like runtime built in Rust with JavaScript-compatible syntax, async support, and built-in modules
1
2
3
4
5
6
7
8
9
10
11
12
function add(a, b) {
    return a + b
}

function multiply(a, b) {
    return a * b
}

let result1 = add(5, 3)
let result2 = multiply(4, 6)

result1 + result2