b7e7d855b448 35 minutes ago

You guys can keep complaining about how go is too verbose, but I love everything about go.

I love the error handling, I love the forced formatting, i love all the linting it has including style guides. When you read other source code it's so easy to understand it and make sense of it. Thank you go team

(Ok, maybe I am a bit sceptical with the latest generic additions, but overall it's a great language. I love it.)

  • jerf 24 minutes ago

    If generics were going to ruin the language, they would have by now. I think you can rest easy.

    • ncruces 1 minute ago

      The greatest thing about generics is … that they're not used much if at all.

      Which is a great way to make sure they're not overused, which in my experience is better than underuse.

  • wannabe44 1 minute ago

    Oh yeah totally agree. I don't understand why someone would want to write `slices.Contains(s, needle)` when you can write this beautiful poem like a Shakespeare in VSCode:

        found := false
        for _, v := range s {
            if v == needle {
                found = true
                break
            }
        }
ksec 21 minutes ago

So what is context? This isn't new and why the submission ?

hoppp 4 hours ago

I was just looking for this. Will give it a spin.