From 8de470b723f9dfa5197ae7b7727a305a5d147426 Mon Sep 17 00:00:00 2001 From: Rock070 Date: Sun, 17 Dec 2023 00:02:56 +0800 Subject: [PATCH] Update call_me function to accept a parameter --- exercises/02_functions/functions3.rs | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/exercises/02_functions/functions3.rs b/exercises/02_functions/functions3.rs index 74f44d6d..5ef0f806 100644 --- a/exercises/02_functions/functions3.rs +++ b/exercises/02_functions/functions3.rs @@ -3,10 +3,8 @@ // Execute `rustlings hint functions3` or use the `hint` watch subcommand for a // hint. -// I AM NOT DONE - fn main() { - call_me(); + call_me(20); } fn call_me(num: u32) {