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
console.log("Testing error handling...")

try {
    console.log("In try block")
    throw "This is a test error"
} catch (error) {
    console.log("Caught error:", error)
}

console.log("Program continues after error")