Skip to content

Commit

Permalink
Added run.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
lordofwizard committed Oct 16, 2024
1 parent ed7df99 commit 18555f8
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src/run.rs
Original file line number Diff line number Diff line change
@@ -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);
}
}

0 comments on commit 18555f8

Please sign in to comment.