rustlings/exercises/functions/functions1.rs
Kartheek, Gottipati c5a0b0316d solutions
2022-05-03 15:30:09 -04:00

10 lines
134 B
Rust

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