From 3d0a31f700bc41699c0aa259617deb60a7739a23 Mon Sep 17 00:00:00 2001 From: Stirling Hostetter Date: Wed, 2 Nov 2022 11:00:38 -0500 Subject: [PATCH 1/2] complete intro 1 --- exercises/intro/intro1.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/exercises/intro/intro1.rs b/exercises/intro/intro1.rs index 45c5acba..242db8ef 100644 --- a/exercises/intro/intro1.rs +++ b/exercises/intro/intro1.rs @@ -9,8 +9,6 @@ // when you change one of the lines below! Try adding a `println!` line, or try changing // what it outputs in your terminal. Try removing a semicolon and see what happens! -// I AM NOT DONE - fn main() { println!("Hello and"); println!(r#" welcome to... "#); From 8b15739c25367c64023ac12a135b7d0bf04b220f Mon Sep 17 00:00:00 2001 From: Stirling Hostetter Date: Wed, 2 Nov 2022 11:00:50 -0500 Subject: [PATCH 2/2] 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!"); }