Complete functions1

This commit is contained in:
Stirling Hostetter 2022-11-02 11:35:44 -05:00
parent 75ddd05374
commit 9978dd678f

View File

@ -1,8 +1,10 @@
// functions1.rs // functions1.rs
// Execute `rustlings hint functions1` or use the `hint` watch subcommand for a hint. // Execute `rustlings hint functions1` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() { fn main() {
call_me(); call_me();
} }
fn call_me() {
println!("Call me maybe.");
}