simple rust programs
Follow this link to install rust compileron your laptop - https://www.rust-lang.org/tools/install
All the projects are built using cargo i.e Rust package manager Read this link to understand it better https://doc.rust-lang.org/cargo/
How to build and run using cargo - After installing cargo and rust compiler go to the root of a directory i.e directory which has src,lib Cargo.toml files and execute "cargo build" this command will build your project now the built binary will be in the folder target/debug/ you can also use "cargo run" command to execute it.