Bonzai is a programming language that relies on Actor model, Reactive programming and on a strong and non-taulerant typechecker to guarantee types and computations in your code. It compiles down to a custom bytecode with relatively good performance.
require "std:http"
require "std:natives"
let port = 8000
let server = spawn HTTPServer(port)
server->listen(fn(req) => {
req.respondText("text/html", "<h1>Hello, world!</h1>")
})
print("Server running on port $port")