An open API service indexing awesome lists of open source software.

https://github.com/cs01/milo

Memory-safe systems language that compiles to LLVM IR. No GC, no lifetimes.
https://github.com/cs01/milo

Last synced: 11 days ago
JSON representation

Memory-safe systems language that compiles to LLVM IR. No GC, no lifetimes.

Awesome Lists containing this project

README

          

# Milo

**Memory Safe. Formally Verifiable. Native.**

A memory-safe systems language with built-in contracts, safety profiles, and simple syntax. Compiles to native code via LLVM.

```milo
from "std/http" import { Request, Response, serve }

fn main(): i32 {
serve(8080, (req: &Request) => {
return Response.Html("

hello from milo

")
})!
return 0
}
```

**Memory safe. Formally verifiable. Native. [Vibe-codeable](docs/design.md#ai-assisted-development-vibe-coding).**

**[Docs & Playground](https://cs01.github.io/milo/)**