Introduction to Rust Table of content Introduction to Rust Installing of Rust and Environment setup Introduction to Cargo cargo new hello_world cargo build cargo run cargo build --release cargo clean Running Hello world application Understanding the code code block function macros cargo.toml / cargo.lock Debugging using codeLLDB Introduction to Rust Rust is a multi-paradigm, general-purpose programming language designed for performance and safety, especially safe concurrency. Rust is syntactically similar to C++, but can guarantee memory safety. It was created at Mozilla foundations. Installing of Rust and Environment setup Rust is easy to install. The most recommended way to install Rust programming language is through rustup tool. The command to install rustup tool on linux/mac is : curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh In the Rust development environment, all tools are installed to the ~/.cargo/bin directory, and this is ...
Software Engineering Crunch (New post every week)