Programming Language: Rust
Rust is a programming language designed by Mozilla Foundation. This is the notes on Rust Book. CLI applications: rustc rustup cargo cargo new <project_name> cargo build // --release for production cargo run cargo check //ensures code compiles but doesn't build the executable. fn main() {…
Continue reading...