rustlings/exercises/functions/functions1.rs
2021-09-28 06:10:38 +00:00

12 lines
173 B
Rust

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