rustlings/exercises/functions/functions1.rs
2021-06-19 20:44:07 +08:00

10 lines
169 B
Rust

// functions1.rs
// Make me compile! Execute `rustlings hint functions1` for hints :)
fn main() {
fn call_me(){
println!("call_me");
}
call_me();
}