From 8b15739c25367c64023ac12a135b7d0bf04b220f Mon Sep 17 00:00:00 2001 From: Stirling Hostetter Date: Wed, 2 Nov 2022 11:00:50 -0500 Subject: [PATCH] complete intro 2 --- exercises/intro/intro2.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/exercises/intro/intro2.rs b/exercises/intro/intro2.rs index efc1af20..cc6d8d1a 100644 --- a/exercises/intro/intro2.rs +++ b/exercises/intro/intro2.rs @@ -2,8 +2,7 @@ // Make the code print a greeting to the world. // Execute `rustlings hint intro2` or use the `hint` watch subcommand for a hint. -// I AM NOT DONE fn main() { - println!("Hello {}!"); + println!("Hello World!"); }