12 years and still no proper error handling. World stars. ;) Seriously, the error handling is a big problem with Go. Not the way it works, the way it effects how people do control flow in general.
Twelve Years of Go
11–20 of 244 posts
Re: Twelve Years of Go
#12I dont understand why they move forward with this. Go is absolutely awesome, it's a gem, adding generics is too risky. This is such a bad news for me (i didnt know). I'm trully affected.
Re: Twelve Years of Go
#1312 years and still no proper error handling. World stars. ;) Seriously, the error handling is a big problem with Go. Not the way it works, the way it effects how people do control flow in general.
It’s never actually been a problem for me, I prefer Go errors over most languages
Re: Twelve Years of Go
#14I cant believe they are moving forward with "generics". Programmers on average already tend to make things more complicated than they should be. Now every single module in the ecosystem is gonna use more abstractions, generics to fit their social environment. Its well known that abstractions are the devil. How many modules are gonna use generics when they should not? Most? Programmers are bad at programming and they…
Re: Twelve Years of Go
#1512 years and still no proper error handling. World stars. ;) Seriously, the error handling is a big problem with Go. Not the way it works, the way it effects how people do control flow in general.
Re: Twelve Years of Go
#16Earlier quoted context omitted.
It’s never actually been a problem for me, I prefer Go errors over most languages
I can live with the error handling. But as I wrote. The problem is that it encourages if-programming. Something that is a problem in the Go community.
Re: Twelve Years of Go
#17Earlier quoted context omitted.
It’s never actually been a problem for me, I prefer Go errors over most languages
I can live with the error handling. But as I wrote. The problem is that it encourages if-programming. Something that is a problem in the Go community.
Re: Twelve Years of Go
#18Re: Twelve Years of Go
#19I cant believe they are moving forward with "generics". Programmers on average already tend to make things more complicated than they should be. Now every single module in the ecosystem is gonna use more abstractions, generics to fit their social environment. Its well known that abstractions are the devil. How many modules are gonna use generics when they should not? Most? Programmers are bad at programming and they…
Re: Twelve Years of Go
#20Earlier quoted context omitted.
I can live with the error handling. But as I wrote. The problem is that it encourages if-programming. Something that is a problem in the Go community.
since when is if-programming a bad thing
If statements used for error checking are a bit verbose but basically fine.