rustlings/exercises/functions/functions1.rs
2020-10-17 17:24:58 +09:00

10 lines
153 B
Rust

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