From 3937082a3cc7c3f0f963349b93975424a069a25d Mon Sep 17 00:00:00 2001 From: Paul Scarrone Date: Sun, 12 Feb 2023 19:20:40 -0500 Subject: [PATCH] intro2 --- exercises/intro/intro2.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/exercises/intro/intro2.rs b/exercises/intro/intro2.rs index efc1af20..49b3a150 100644 --- a/exercises/intro/intro2.rs +++ b/exercises/intro/intro2.rs @@ -5,5 +5,6 @@ // I AM NOT DONE fn main() { - println!("Hello {}!"); + let world = "world"; + println!("Hello {world}!"); }