rustlings/exercises/functions/functions1.rs

12 lines
226 B
Rust
Raw Normal View History

2018-02-22 09:09:53 +03:00
// functions1.rs
2019-11-11 19:47:45 +03:00
// Make me compile! Execute `rustlings hint functions1` for hints :)
2015-09-18 04:12:00 +03:00
2022-05-28 03:04:58 +03:00
// This needed the call_me fucntion to be defined.
2015-09-18 04:12:00 +03:00
fn main() {
2022-05-28 03:04:58 +03:00
fn call_me() {
println!("Hello World");
}
2015-09-18 04:12:00 +03:00
call_me();
}