Vibeset

Hare

Hare is a small, simple, stable systems language meant as a modern but conservative alternative to C. It uses its own standard library, doesn't depend on libc and favors simplicity and longevity over flashy features.

Para qué se usa

A favor

En contra

Ecosistema

Ejemplo

use fmt;

export fn main() void = {
  fmt::println("¡Hola, mundo!")!;
};