DEV Community

Discussion on: What aspect of Go were you at odds with, coming from a different tech stack?

Collapse
 
tinsoldier6 profile image
Jason Gade

I like Go a lot and I think that it has helped me understand C and C++ a bit better. I really hate the verbosity of Java and C++ generally, and I don't see any advantage to it and ceremony.

As for the cons, there are cases where closures in loops and typed vs non-typed nil values can get you.

Otherwise it's definitely my current favorite language.

Collapse
 
buphmin profile image
buphmin

C/C++ have their place, mostly for extremely high performance scenarios like operating systems and video games. For web...pretty much not worth the effort. Go is high enough performance in most cases, and even then something like nodejs will be suitable in most web circumstances.

Collapse
 
tinsoldier6 profile image
Jason Gade

I don't do a lot of web stuff, mostly command-line utilities and such. But with Go's lack of a good GUI, I've considered using a Go webserver (very easy to implement!) as an interface.