So I tried a lot of programming languages: Pascal, Delphi, JavaScript, TypeScript, Rust, Visual Basic, and some more.
Golang is my current favorite.
As you probably know about me, I like simplicity and minimalism a lot. Golang is simple by design. Minimalistic not in the sense of "I can't do that much stuff", but more in the sense of "There is one way literally everyone is doing a specific something."
Golang's built-in tools are very simple and pragmatic, so I don't have to include a lot of third party dependencies, e.g. format, test, coverage.
Most of the time when I create a simple app, I can solely use golang's standard library and its standard tools instead of having to add tens or hundreds of external dependencies, like in JavaScript.
I like Golang!