From 8be313a1dd7c6f31dc1fabaac80fdf23f49a41c2 Mon Sep 17 00:00:00 2001 From: Hariprasath_Ganapathi Date: Wed, 13 Nov 2024 10:38:12 +0530 Subject: [PATCH] Update variables6.rs --- exercises/01_variables/variables6.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/01_variables/variables6.rs b/exercises/01_variables/variables6.rs index 4a040fdd..eb0b0874 100644 --- a/exercises/01_variables/variables6.rs +++ b/exercises/01_variables/variables6.rs @@ -1,5 +1,5 @@ // TODO: Change the line below to fix the compiler error. -const NUMBER = 3; +const NUMBER i32 = 3; fn main() { println!("Number: {NUMBER}");