Learning Rust

Resources (books, tutorials, etc.) A half-hour to learn Rust - blog post, a great intro into the language. It may be enough to start reading the code, but not enough for writing. Easy Rust — a book about rust Many companies and people now learn Rust, and they could learn faster with a book that has easy English. This textbook is for these companies and people to learn Rust with simple English....

June 21, 2021 · SergeM

IDE for Rust

I started to learn rust, and I needed to set up some IDE to handle my exercises. It seems that VScode has pretty good support for Rust. How to set up VS code to work with rust, including debugging. Install rust-analyzer extension and vscode-lldb extension: code --install-extension matklad.rust-analyzer code --install-extension vadimcn.vscode-lldb rust-analyzer provides a nice UI for running binaries and tests: Also it gives a lot of hints: Note that rust-analyzer doesn’t work together with Rust extension (Rust for Visual Studio Code)....

May 23, 2021 · SergeM