Memory Safe. Simple. Native.
A memory-safe systems language with simple syntax inspired by TypeScript, Python, and Rust. Compiles to native code via LLVM.
from "std/http" import { Request, Response, serve }
fn main(): i32 {
serve(8080, (req: &Request) => {
return Response.Html("<h1>hello from milo</h1>")
})!
return 0
}