Caro is thinking out loud

Created Last updated

Use cargo check to quickly see if your code compiles

You can always build an executable of your Rust code with cargo build or cargo run, but on a big project this can take a while. If you just want to check for compliation errors, use cargo check

Source