Update README.md
letting users know where the program will be stored and detailing cargo run
This commit is contained in:
parent
aa73cde520
commit
918d9faeca
1 changed files with 4 additions and 0 deletions
|
@ -13,6 +13,10 @@ This repo is a short and sweet response to Austins most recent video 'The Scienc
|
|||
|
||||
`cargo build --release`
|
||||
|
||||
the built program will be stored under `target/release` or `target/debug` if you forgot to use the `--release` flag (not recommended as there will be a significant performance hit due to additional debugging and status information, as well as additional runtime verification of the code)
|
||||
|
||||
you can also replace `build` with `run` to run the program after the compilation process is done, however this may interfere with any external timing software such as gnu time (see the Programs section) since it will include the compilation time and however long it takes for cargo to start the built program
|
||||
|
||||
# Features
|
||||
|
||||
You can disable default features to switch to less performant code like so
|
||||
|
|
Loading…
Add table
Reference in a new issue