Hacker News new | ask | show | jobs
by crowdyriver 1486 days ago
My feelings exactly. I love go because of how productive and resilient can be. In months programming in it I've barely had any null pointer exceptions. If it compiles, and passes the linters, it mostly works aswell.
1 comments

Yeah, null pointers and the compiler writing more code for you (overlaps with generics) are pretty high on my wish list.

I'm bringing someone up in Go and they forget to initialize some map or struct: `&Foo{data:map[int]int{}}` and crash the app.