From cc20beedd84fae8a8adf92f2fa0b4872a9980d98 Mon Sep 17 00:00:00 2001 From: Jeddi <60323767+Jeddi212@users.noreply.github.com> Date: Sat, 30 Apr 2022 09:29:19 +0700 Subject: [PATCH] Add Hare (#1349) * Add Hare 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. https://harelang.org/ * Add Hare in readme.md 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. https://harelang.org/ * Incremented the language count * Update h/Hare.ha Co-authored-by: Richie Bendall Co-authored-by: Gabe <66077254+MrBrain295@users.noreply.github.com> Co-authored-by: Richie Bendall --- h/Hare.ha | 5 +++++ readme.md | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 h/Hare.ha diff --git a/h/Hare.ha b/h/Hare.ha new file mode 100644 index 00000000..85709c5e --- /dev/null +++ b/h/Hare.ha @@ -0,0 +1,5 @@ +use fmt; + +export fn main() void = { + fmt::println("Hello World")!; +}; diff --git a/readme.md b/readme.md index eb481154..23e41831 100644 --- a/readme.md +++ b/readme.md @@ -8,7 +8,7 @@ Thanks to everyone who continues to contribute; new languages are created every Make sure to see [contributing.md](/contributing.md) for instructions on contributing to the project! -## Languages (979 total) +## Languages (980 total) * [!](%23/%21) * [!@#$%^&*()_+](%23/%21%40%23%24%25%5E%26%E2%88%97%28%29_%2B) @@ -466,6 +466,7 @@ Make sure to see [contributing.md](/contributing.md) for instructions on contrib * [Haifuckqueue](h/Haifuckqueue) * [Haml](h/Haml.haml) * [Harbour](h/Harbour.prg) +* [Hare](h/Hare.ha) * [Haskell](h/Haskell.hs) * [Haxe](h/Haxe.hx) * [haystack](h/haystack.hstk)