Skip to content
@bonzai-lang

The Bonzai Programming Language

Bonzai is a programming language based on actor models. It compiles down to a custom bytecode.

Bonzai

The Bonzai Programming Language

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.

HTTP Server example

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")

Popular repositories Loading

  1. bonzai bonzai Public

    Bonzai is a general purpose programming language. It compiles down to a custom bytecode.

    Haskell 2

  2. .github .github Public

Repositories

Showing 2 of 2 repositories

Top languages

Loading…

Most used topics

Loading…