austinjalexander / rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

rust

The Rust Programming Language

Install and Run

curl --proto '=https' --tlsv1.3 https://sh.rustup.rs -sSf | sh
rustc --version
# rustc 1.63.0 (4b91a6ea7 2022-08-08)
cargo --version
# cargo 1.63.0 (fd9c4297c 2022-07-01)
rustup update
rustup docs
rustup docs --book
rustc main.rs && ./main
cargo new hello_cargo
cd hello_cargo
cargo build
./target/debug/hello_cargo
cargo check
cargo run
cargo build --release
./target/release/hello_cargo
cargo update
cargo doc --open

About


Languages

Language:Rust 100.0%