Top 1,000 Features Creators Resources Blog Explorer Download
GitHub icon

Hare

< >

Hare is a programming language created in 2020.

#1026on PLDB 4Years Old
Download source code:
git clone https://git.sr.ht/~sircmpwn/hare


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 · About · Acknowledgements · Extensions · Day 630 · Donate · feedback@pldb.io