Announcing the Hare programming language

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  1. C-headers

  2. CodeRabbit

    CodeRabbit: AI Code Reviews for Developers. Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.

    CodeRabbit logo
  3. Tagged unions of free-floating types (polymorphic variants, C++ std::variant) and enum holding cases namespaced within themselves (Rust/Haskell) are two alternative designs. I personally prefer having both in a language. But if only one is available in a language, I prefer free-floating types, since it's more flexible and allows using the same type in multiple tagged unions, and you can somewhat emulate enums using tagged unions and namespaces (like I've done in C++ at https://gitlab.com/exotracker/exotracker-cpp/-/blob/eb8458b2...). If you take that approach, to prevent collapsing in the generic case when two type parameters are the same, you'd have to define newtypes for each type stored in a union.

  4. rust

    Empowering everyone to build reliable and efficient software.

    There is nothing wrong with being a bad developer, we are all bad developers if we don't understand what we are doing

    We have the tools to eliminate memory bugs already

    Forcing people to use a language with a buitin sanitizer/babysitter that runs everytime you compile your code and as a result makes you wait 10+ minutes between each line of change is dumb

    Expecting your code to be bug free because the code written by someone else told you so is also dumb

    https://github.com/rust-lang/rust/issues/38899

    who to trust in that case?

    --

    educate and trust developers, use tools to audit your code when needed

  5. order-pp

    order-pp preprocessor library (standalone part of chaos-pp)

  6. CSP

    Compile-time LISP interpreter on C macro preprocessor (by kchanqvq)

  7. Vale

    Compiler for the Vale programming language - http://vale.dev/ (by ValeLang)

    > while Rust does bring significant advances in this field, it's a very large and complicated language.

    The gist of Rust on this fairly easy, is the heritage/chasing of C++ that makes Rust complicated.

    A "Rust simple like pascal/c" have potential and I bet 1 billon the borrow checker will not make it hard to use (check https://vale.dev)

  8. zig_comptime_lisp

    If it's at compilation time, you have the full zig language so you certainly could implement your very own functional programming language https://github.com/igmanthony/zig_comptime_lisp in regular zig rather in an external preprocessor.

  9. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  10. http_server

    Pony library for building HTTP server applications.

    I use pony https://ponylang.io/ as a language - it's an Actor based language with GC where every actor has its own memory and is responsible for its own GC.

    The main feature is its ability to safely share or move data around between actors in a way that is data-race and deadlock free. Pony doesn't use locks anyways :-)

    A high level as to how it achieves this:

  11. hare-color

    Color package for Hare (harelang.org)

    A big part of any new language taking off is a rich ecosystem. If you're looking for a lib to color your terminal output, consider mine? [0]

    0. https://github.com/tristanisham/color

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Simplifying SQL function implementation with Rust procedural macro

    6 projects | dev.to | 13 Mar 2025
  • Guard state transitions with proto methods

    2 projects | dev.to | 10 Mar 2025
  • Effective Rust

    1 project | news.ycombinator.com | 3 Mar 2025
  • Building Type-Safe Rust Applications with Convex: Introducing convex-typegen

    2 projects | dev.to | 25 Feb 2025
  • 5 Best Programming Languages to Learn: Decoding the Future

    4 projects | dev.to | 22 Feb 2025

Did you know that C is
the 6th most popular programming language
based on number of references?