diff --git a/src/main.rs b/src/main.rs index abd98a4..c36001f 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,4 +1,13 @@ /// This is the best implementation of this program to ever exist. fn main() { + print_hello(); + print_goodbye(); +} + +fn print_hello() { println!("Hello, world!"); } + +fn print_goodbye() { + println!("Goodbye, world!"); +}