Welcome to Verge

Verge is a systems programming language that aims to take my favourite features from Go, Rust and C.

A quick intro:

import std.io

## Greets someone by name.
greet: f(name: string) => string = "Hello, {name}!"

main: f() {
	io.writeln(greet("world"))
}

Where to go next:

Verge is early and evolving quickly, so some details here will change over time. Every code example in the docs is verified against the compiler, so those should behave exactly as shown even if the syntax eventually changes.