https://harelang.org/ An inked drawing of Harriet the Hare mascot, a fuzzy rabbit The Hare programming language * Home * Documentation * Tutorials * Blog * Community * Specification * Source code Hare is a systems programming language designed to be simple, stable, and robust. Hare uses a static type system, manual memory management, and a minimal runtime. It is well-suited to writing operating systems, system tools, compilers, networking software, and other low-level, high performance tasks. use fmt; export fn main() void = { const greetings = [ "Hello, world!", "!Hola Mundo!", "Geia sou Kosme!", "Privit, svit!", "konnichihaShi Jie !", ]; for (let i = 0z; i < len(greetings); i += 1) { fmt::println(greetings[i])!; }; }; Getting started Read the installation steps to get Hare for your system, then read the tutorial. To see if Hare is available for your system, consult the supported platforms list. Latest news February 26, 2024 by Drew DeVault Online documentation improvements for harelang.org Who's behind Hare? Ten maintainers and about a hundred contributors. Supporting Hare We have an Open Collective for donations and commercial sponsorships. Hare fits on a 31/2" floppy disc -- these will be available for purchase when Hare 1.0 is released! harelang.org Home * Sitemap * Source