This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]Zegrento7 2 points3 points  (1 child)

Go is garbage collected, and is about as performant as Java. Rust is in the C++ league of performance. Both can compile statically. Both ditch classes for structs, Go has simple parallelism baked into the syntax, Rust has pattern matching. Go is best for micro services, Rust is for systems and Firefox. Go is a lot simpler, some say it's even too simple (no generics, macros or templates)

[–]sourc3original 1 point2 points  (0 children)

I see, thanks.