rustlings/exercises/functions/functions1.rs
2022-06-04 21:26:29 -07:00

11 lines
158 B
Rust

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