• z3rOR0ne
    link
    fedilink
    arrow-up
    17
    ·
    1 month ago

    I’m a beginner in both (heavily leaning towards putting more time into learning Rust though). Could you please elaborate a bit?

    • Ananace@lemmy.ananace.dev
      link
      fedilink
      arrow-up
      34
      arrow-down
      2
      ·
      1 month ago

      Go has a heavy focus on simplicity and ease-of-use by hiding away complexity through abstractions, something that makes it an excellent language for getting to the minimum-viable-product point. Which I definitely applaud it for, it can be a true joy to code an initial implementation in it.

      The issue with hiding complexity like such is when you reach the limit of the provided abstractions, something that will inevitably happen when your project reaches a certain size. For many languages (like C/C++, Ruby, Python, etc) there’s an option to - at that point - skip the abstractions and instead code directly against the underlying layers, but Go doesn’t actually have that option.
      One result of this is that many enterprise-sized Go projects have had to - in pure desperation - hire the people who designed Go in the first place, just to get the necessary expertice to be able to continue development.

      Here’s one example in the form of a blog - with some examples of where hidden complexity can cause issues in the longer term; https://fasterthanli.me/articles/i-want-off-mr-golangs-wild-ride

    • Ephera
      link
      fedilink
      arrow-up
      9
      ·
      1 month ago

      Another reason is kind of a general thing with programming language design: Go, like Java or C, has relatively few concepts in the language and stdlib. This means you’re relatively quick to have seen all of them.

      But this also means that for various tasks, these concepts that were left out, would have been the right tool. For example, Go doesn’t have enums.

      Generally, it’s still possible to create all possible programs, because of turing-completeness, but it will be more cumbersome and more boilerplate-heavy.

      So, as a rule of thumb, the more concepts are provided by the language and stdlib, the more you have to learn upfront, but the less pain you have long-term.

    • Ethan@programming.dev
      link
      fedilink
      English
      arrow-up
      9
      arrow-down
      7
      ·
      1 month ago

      Ananace and the article they linked are using their dislike of Go to conclude that it’s a bad language*. It is not a bad language. Every language has hidden complexity and foot guns. They don’t like Go. Maybe you won’t like Go. That’s ok. But that doesn’t make Go a bad language. The language designers are very opinionated and you might dislike them and their decisions.

      I haven’t used Rust but from what I’ve seen, it’s a lot less readable than Go. And the only thing more important than readability is whether or not the code does what it’s supposed to do. For that reason I doubt I’ll ever use Rust outside of specific circumstances.

      *I’m using “a bad language” as shorthand for “a language you shouldn’t use”. Maybe they don’t think it’s bad but amounts to the same thing.

      • Feathercrown@lemmy.world
        link
        fedilink
        English
        arrow-up
        16
        ·
        1 month ago

        And the only thing more important than readability is whether or not the code does what it’s supposed to do.

        Isn’t that exactly what Rust is supposed to be good at

        • arendjr@programming.dev
          link
          fedilink
          arrow-up
          12
          arrow-down
          1
          ·
          1 month ago

          And conversely, something Go is very bad at. For example, os.Chmod silently not doing anything on Windows.