From 871e6aeaf6388fe6ad1975cc0d179ea27bc906c5 Mon Sep 17 00:00:00 2001 From: Glen Whitney Date: Tue, 27 Aug 2024 05:10:53 +0000 Subject: [PATCH] Update Examples --- Examples.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Examples.md b/Examples.md index c6a19f5..62816a1 100644 --- a/Examples.md +++ b/Examples.md @@ -1370,7 +1370,9 @@ fn main() { } acc } - println!("Sum of odd numbers up to 9 (excluding): {}", sum_odd_numbers(9)); + println!("Sum of odd numbers up to 9 (excluding): {}", + sum_odd_numbers(9) + ); } ```