rustlings/exercises/functions/functions1.rs
2021-02-01 18:56:40 +00:00

11 lines
165 B
Rust

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