Compare commits

...

2 Commits

Author SHA1 Message Date
Maxluli bc13c48302 Ready to compare with C# 2022-05-03 14:47:57 +02:00
Maxluli ced3a93412 Release V1.0 2022-05-03 14:46:23 +02:00
2 changed files with 10 additions and 1 deletions
+9
View File
@@ -0,0 +1,9 @@
# Rusty Propagation
Run :
```
cargo run -q
```
Speed run :
```
cargo run -q --release
```
+1 -1
View File
@@ -20,7 +20,7 @@ fn main() {
let disease = Disease::new(20,10,5,String::from("Covid 44")); let disease = Disease::new(20,10,5,String::from("Covid 44"));
let mut population = Population::new(20,10,5,300,300,disease); let mut population = Population::new(20,10,5,1000,1000,disease);
//population.change_disease(disease); //population.change_disease(disease);
println!("Before Filling"); println!("Before Filling");
//population.display(); //population.display();