rustlings/exercises/functions/functions1.rs
Steven Johnson ecfbe8728d work so far
2022-06-28 19:34:16 +12:00

9 lines
133 B
Rust

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