rustlings/exercises/functions/functions1.rs
2022-08-12 23:05:32 +08:00

11 lines
163 B
Rust

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