redone function

This commit is contained in:
2024-06-02 14:37:15 +02:00
parent 6b48a51be4
commit f9e9fb7e10
4 changed files with 35 additions and 23 deletions

View File

@@ -3,6 +3,14 @@ name = "montecarlo-rust"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "monte-carlo"
path = "src/main.rs"
[profile.release]
strip = true # Automatically strip symbols from the binary.
opt-level = 3
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies.rand]