Update README.md

letting users know where the program will be stored and detailing cargo run
This commit is contained in:
deepCurse 2024-08-15 22:13:46 +00:00
parent aa73cde520
commit 918d9faeca

View file

@ -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