|
|
|
|
|
by bradfitz
4712 days ago
|
|
This answer sums up my feelings best: http://stackoverflow.com/questions/7479276/what-is-the-main-... It's good for C#, but still a language wart that could be built-in. I like that Go only has one set of APIs for everything, not the sync way and the async way. It's sad that C#, which started out as a fixed-up Java, is now growing its own warts. Of course, Go's not perfect either. |
|
Go generally uses synchronous functions, but a function in Go can be the subject of a "go" statement (sharing the name of the language should give an importance of how central this feature is), which causes the function to be executed as a goroutine (that is, asynchronously using an M:N threading model.)