Rust programming tutorial
https://www.rust-lang.org/tools/install
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
rustup --version
rustc --version
Cargo is Rust's package manager and build system, designed to simplify the process of managing dependencies, building projects and running code. cargo --version
cargo new hello_world
cargo build
cargo run
############################################################################################################