rustlings/exercises/functions/functions1.rs
2020-06-21 20:35:25 +02:00

11 lines
164 B
Rust

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