From 3ca6d269ccbe142b1b271c67cb16b40c22a781b3 Mon Sep 17 00:00:00 2001 From: akshitgautam42 Date: Sat, 11 Nov 2023 20:23:09 +0530 Subject: [PATCH] Exercise 11 --- exercises/02_functions/functions3.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/02_functions/functions3.rs b/exercises/02_functions/functions3.rs index 74f44d6d..59f5d298 100644 --- a/exercises/02_functions/functions3.rs +++ b/exercises/02_functions/functions3.rs @@ -3,10 +3,10 @@ // Execute `rustlings hint functions3` or use the `hint` watch subcommand for a // hint. -// I AM NOT DONE + fn main() { - call_me(); + call_me(10); } fn call_me(num: u32) {