From 9978dd678f0483685e0207183ec6f267145eecb7 Mon Sep 17 00:00:00 2001 From: Stirling Hostetter Date: Wed, 2 Nov 2022 11:35:44 -0500 Subject: [PATCH] Complete functions1 --- exercises/functions/functions1.rs | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/exercises/functions/functions1.rs b/exercises/functions/functions1.rs index 03d8af70..1d6912de 100644 --- a/exercises/functions/functions1.rs +++ b/exercises/functions/functions1.rs @@ -1,8 +1,10 @@ // functions1.rs // Execute `rustlings hint functions1` or use the `hint` watch subcommand for a hint. -// I AM NOT DONE - fn main() { call_me(); } + +fn call_me() { + println!("Call me maybe."); +}