|
|
|
|
|
by kosherhurricane
1047 days ago
|
|
> If a programming language supports union types and type inference then there is no need for such a "special" language feature Laughs in Go. > While Zig's errorhandling is not bad and miles above Go's Laughs again in Go. Go has no "foundations" regarding errors, it's just a convention. It has no union types. It doesn't have weird corner cases. It's just a returned value you can handle. Or not. Of all the error handling paradigms I've seen, Go's requires the least amount of "specialized thinking" (try/catch or whatnot)--it's just becomes another variable. |
|