Skip to content

Modern, high-level systems programming language compiled to native code, with Automatic Reference Counting (ARC) and a lightweight concurrency model.

Error handling

try-catch blocks
No more if err != nil everywhere.

Sum types / Enums

Real enums and records.

Pattern matching

Match statements for powerful control flow (Coming Soon).

Control Flow

If is an expression, not a statement.

Memory Management

Automatic Reference Counting (ARC).
No garbage collection pauses, predictable performance.