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.

  • rockSlayer@lemmy.world
    link
    fedilink
    arrow-up
    8
    ·
    5 months ago

    I suppose I can respect that opinion on memory management, but also disagree that we should always trust the programmer. I was mostly commenting on the syntax, if it weren’t for the fact that I was on the website for Hare I would have thought it was Rust.

    It’s got a lot of good ideas from what I saw in the quick guide, but I feel like lifetimes are the next step for memory management in general. If they really want manual memory management to be default, they could continue to flip Rust and make a safe attribute for functions

    • Lmaydev@programming.dev
      link
      fedilink
      arrow-up
      8
      ·
      5 months ago

      I think the exact opposite to them. Humans are almost always the weakest link. The more you can automate the better.