From ddafa2808a811fc330e55b3026ad9d764102641c Mon Sep 17 00:00:00 2001 From: lordofwizard Date: Wed, 16 Oct 2024 22:04:38 +0530 Subject: [PATCH] Added the run file --- src/run.rs | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 src/run.rs diff --git a/src/run.rs b/src/run.rs new file mode 100644 index 0000000..523cf56 --- /dev/null +++ b/src/run.rs @@ -0,0 +1,19 @@ +pub struct Run; + +impl Run { + pub fn new() { + // TODO this is where the program should start + println!("Program Started"); + } +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn run_has_std_practices() { + Run::new(); + assert!(true); + } +}