From 3f1246caedf4d44edac453bebecc021cc1dd0c51 Mon Sep 17 00:00:00 2001 From: akshitgautam42 Date: Sat, 11 Nov 2023 20:14:21 +0530 Subject: [PATCH] Exercise 8 --- exercises/01_variables/variables6.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/01_variables/variables6.rs b/exercises/01_variables/variables6.rs index 853183ba..8e415d57 100644 --- a/exercises/01_variables/variables6.rs +++ b/exercises/01_variables/variables6.rs @@ -3,9 +3,9 @@ // Execute `rustlings hint variables6` or use the `hint` watch subcommand for a // hint. -// I AM NOT DONE -const NUMBER = 3; + +const NUMBER : i32 = 3; fn main() { println!("Number {}", NUMBER); }