/rust-new

Rust language lessons refresher

Primary LanguageRustThe UnlicenseUnlicense

rust-new

Rust language lessons refresher

Cargo commands

# start new package / crate
cargo new

# build package
cargo build

# run and build package
cargo run

# Quickly check if package will build
cargo check

## Run test

cargo run