|
|
|
|
|
by Groxx
601 days ago
|
|
Potentially worth pointing out that Go is memory safe only when single threaded (races can corrupt memory), and this kind of application is very likely to use multiple threads. But I do also generally expect it to be safer than C++. The race detector prevents a lot of badness quite effectively because it's so widely used. |
|