rustlings/exercises/functions/functions1.rs
2022-06-10 14:07:11 +02:00

10 lines
108 B
Rust

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