From a2b99975131f81110bad967da5d393d6b6cba16a Mon Sep 17 00:00:00 2001 From: LukeMathWalker <20745048+LukeMathWalker@users.noreply.github.com> Date: Wed, 18 Dec 2024 17:36:38 +0100 Subject: [PATCH] Avoid using a suffix --- exercises/02_basic_calculator/01_integers/src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exercises/02_basic_calculator/01_integers/src/lib.rs b/exercises/02_basic_calculator/01_integers/src/lib.rs index 555db12ab..a87b56fba 100644 --- a/exercises/02_basic_calculator/01_integers/src/lib.rs +++ b/exercises/02_basic_calculator/01_integers/src/lib.rs @@ -1,6 +1,7 @@ fn compute(a: u32, b: u32) -> u32 { // TODO: change the line below to fix the compiler error and make the tests pass. - a + b * 4u8 + let multiplier: u8 = 4; + a + b * multiplier } #[cfg(test)]