Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 281 Bytes

README.md

File metadata and controls

30 lines (22 loc) · 281 Bytes

Cargo

$ cargo --version

Build and run

$ cargo build
$ ./target/debug/hello_cargo
$ cargo run
$ ./target/debug/hello_cargo

Check

$ cargo check

Release

$ cargo build --release
$ cargo run --release