// functions1.rs
// Make me compile! Execute `rustlings hint functions1` for hints :)

fn main() {
    fn call_me(){
        println!("call_me");
    }
    call_me();
}