From ec8765a0590fd6d5865929b43ff5c95eda9e3c68 Mon Sep 17 00:00:00 2001 From: Paul Scarrone Date: Mon, 20 Feb 2023 13:13:32 -0500 Subject: [PATCH] functions 3 --- exercises/functions/functions3.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/exercises/functions/functions3.rs b/exercises/functions/functions3.rs index 3b9e585b..d5eda8e8 100644 --- a/exercises/functions/functions3.rs +++ b/exercises/functions/functions3.rs @@ -1,10 +1,8 @@ // functions3.rs // Execute `rustlings hint functions3` or use the `hint` watch subcommand for a hint. -// I AM NOT DONE - fn main() { - call_me(); + call_me(25); } fn call_me(num: u32) {