rustlings/exercises/functions/functions1.rs
2022-05-28 02:04:58 +02:00

12 lines
226 B
Rust

// 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();
}