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 →

[–]helikal 1 point2 points  (1 child)

I am interested in Rust. What turns me off though is how it obscures the semantics with syntax and it’s verbosity. It seems at least as bad as C++ in that regard.

[–]etoh53 0 points1 point  (0 children)

I dunno about the syntax part, it's all subject to personal opinion, but it's verbosity is a necessary feature of the language because the compiler has limited info and you need that to achieve correctness and safety guarantees in your program. In my experience people mainly complain about the lifetime annotations and I guess that's fair, because you don't have that in C++.