Native Performance
Compiles to C. fib(35) in 33ms — 85x faster than Python. 49KB release binaries, ~1s builds. ARC memory management — deterministic, no GC pauses.
Compile to C. No VM, no GC pauses. Python's simplicity, C's performance, 49KB binaries.

struct User { name: string age: int fn greeting(self) -> string { return "Hi, " + self.name } fn is_adult(self) -> bool { return self.age >= 18 } } fn main() -> int { var users = [ User{name: "Alice", age: 25}, User{name: "Bob", age: 17} ] for u in users { if u.is_adult() { println(u.greeting()) } } return 0 }
Feature matrix across compiled languages. ✓ = built-in, ✗ = not available, partial = via stdlib only.
| Feature | Wyn | Go | Rust | Python | Zig |
|---|---|---|---|---|---|
| Native binary | ✓ | ✓ | ✓ | ✗ | ✓ |
| No GC | ✓ | ✗ | ✓ | ✗ | ✓ |
| Sub-second compile | ✓ | ✓ | ✗ | — | ✓ |
| Methods in struct | ✓ | ✗ | ✗ | ✓ | ✗ |
| Pipe operator | ✓ | ✗ | ✗ | ✗ | ✗ |
| List comprehensions | ✓ | ✗ | ✗ | ✓ | ✗ |
| Pattern matching | ✓ | ✗ | ✓ | ✓ | ✗ |
| Built-in HTTP/DB | ✓ | partial | ✗ | partial | ✗ |
| Lightweight concurrency | ✓ | ✓ | ✗ | ✗ | ✗ |
| Generators | ✓ | ✗ | ✗ | ✓ | ✗ |
| Cross-compile | ✓ | ✓ | ✓ | ✗ | ✓ |
| Mature ecosystem | ✗ | ✓ | ✓ | ✓ | ✗ |
| IDE support | partial | ✓ | ✓ | ✓ | ✓ |
| Production users | few | ✓ | ✓ | ✓ | ✓ |
Install Wyn and ship your first binary in under 5 minutes