Zig vs Rust. Which one is going to be future?
zygo_histo_morpheus @ zygo_histo_morpheus @programming.dev Posts 1Comments 176Joined 2 yr. ago
zygo_histo_morpheus @ zygo_histo_morpheus @programming.dev
Posts
1
Comments
176
Joined
2 yr. ago
What do you mean by its predecessor? C++? I think rust has a bunch of advantages. For one, designing a new language today gives you the benefit of hindsight meaning that they have a more cohesive set of features and a nicer standard library compared to C++ that has some bloat and cruft as a natural result of it evolving over several decades. It's also much easier to reason about undefined behavior in rust thanks to
unsafe
. Algebraic data types are really nice and traits are better than classes.The borrow checker isn't just useful for low level programming. One of the other main selling points is "fearless concurrency" or essentially the fact that the borrow checker can help you reason about thread safe vs non thread safe data.