❯ cargo --version
cargo 1.83.0 (5ffbef321 2024-10-29)
❯ cargo new hello_cargo
Creating binary (application) `hello_cargo` package
❯ cargo build
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.03s
❯ cargo build --release
Compiling hello_cargo v0.1.0 (/Users/ling/projects/playground/rust/hello_cargo)
Finished `release` profile [optimized] target(s) in 0.24s
❯ cargo run
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.00s
Running `target/debug/hello_cargo`
Hello, world again!
❯ cargo check
Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.03s
❯ cargo doc --open