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.
- Creado por Drew DeVault
- Año 2022
- Paradigma: Imperative · compiled
- Extensiones: .ha
Para qué se usa
- Systems programming
- Tooling
- Low-level software
A favor
- Minimalist and stable
- No libc dependency
- Simple and durable
En contra
- Very young
- Linux/BSD only
- Tiny community
Ecosistema
- harec
- qbe
- Hare stdlib
Ejemplo
use fmt;
export fn main() void = {
fmt::println("¡Hola, mundo!")!;
};