rustlings/exercises/functions/functions1.rs
2021-05-15 12:18:48 +09:00

11 lines
156 B
Rust

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