Started C# porting git add . NOT WORKING FOR NOW

This commit is contained in:
2022-04-29 11:32:48 +02:00
commit 404c5b91a7
7 changed files with 291 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
use console::Term;
mod human;
mod disease;
mod population;
mod prelude {
pub use crate::human::*;
pub use crate::disease::*;
pub use crate::population::*;
pub const CORRECTED_PERCENTAGE:i32 = 101;
}
use prelude::*;
fn main() {
let term = Term::stdout();
term.write_line("********** Rusty Propagation (Console) 2022 **********").expect("Oops Looks like we have a problem here...");
term.write_line("Press any key to start the propagation").expect("Oops Looks like we have a problem here...");
}