// functions1.rs // Make me compile! Execute `rustlings hint functions1` for hints :) // This needed the call_me fucntion to be defined. fn main() { fn call_me() { println!("Hello World"); } call_me(); }