Started C# porting git add . NOT WORKING FOR NOW
This commit is contained in:
+20
@@ -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...");
|
||||
}
|
||||
Reference in New Issue
Block a user