From 78f1285e020c3d34e0ce498307e0adbe261b8cb9 Mon Sep 17 00:00:00 2001 From: appzko <165569962+appzko@users.noreply.github.com> Date: Wed, 5 Jun 2024 15:02:58 +0200 Subject: [PATCH] Update variables1.rs --- exercises/01_variables/variables1.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/01_variables/variables1.rs b/exercises/01_variables/variables1.rs index b3e089a5..18f96468 100644 --- a/exercises/01_variables/variables1.rs +++ b/exercises/01_variables/variables1.rs @@ -5,9 +5,9 @@ // Execute `rustlings hint variables1` or use the `hint` watch subcommand for a // hint. -// I AM NOT DONE + fn main() { - x = 5; + int x = 5; println!("x has the value {}", x); }