Measures Concepts
GitHub icon

Hare

Hare - Programming language

< >

Hare is a programming language created in 2020.

Source code:
git clone https://git.sr.ht/~sircmpwn/hare
#1221on PLDB 4Years Old

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.


Example from the web:
use fmt; export fn main() void = { const greetings = [ "Hello, world!", "¡Hola Mundo!", "Γειά σου Κόσμε!", "Привет, мир!", "こんにちは世界!", ]; for (let i = 0z; i < len(greetings); i += 1) { fmt::println(greetings[i])!; }; };
Example from hello-world:
use fmt; export fn main() void = { fmt::println("Hello World")!; };

Language features

Feature Supported Token Example
Strings "
"Hello world"
Print() Debugging fmt::println

View source

- Build the next great programming language · Search · Add Language · Features · Creators · Resources · About · Blog · Acknowledgements · Queries · Stats · Sponsor · Day 605 · feedback@pldb.io · Logout