Nov 17, 2020
Agreed!
Rust and Go are both:
- Memory Safe
- General Purpose
- Idiomatic
- Fast
- Scaleable
But I find that Rust is better on some aspects:
- Better predictable performance
- No garbage collection
- “If it compiles, it probably works”
That being said, Go is wonderful at:
- Speed of development — particularly APIs and web related items
- Concurrency (Rust is improving a lot here)
- Ease of learning