From 601baff6186e4b7fe1d14ae992630264bae32df7 Mon Sep 17 00:00:00 2001 From: CelestialMelody Date: Thu, 30 Jun 2022 15:25:28 +0800 Subject: [PATCH] start from intro --- exercises/intro/intro1.rs | 2 -- exercises/intro/intro2.rs | 4 +--- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/exercises/intro/intro1.rs b/exercises/intro/intro1.rs index 1c4582de..3b11d4a2 100644 --- a/exercises/intro/intro1.rs +++ b/exercises/intro/intro1.rs @@ -5,8 +5,6 @@ // ready for the next exercise, remove the `I AM NOT DONE` comment below. // Execute the command `rustlings hint intro1` for a hint. -// I AM NOT DONE - fn main() { println!("Hello and"); println!(r#" welcome to... "#); diff --git a/exercises/intro/intro2.rs b/exercises/intro/intro2.rs index 97a073f0..60cc87a8 100644 --- a/exercises/intro/intro2.rs +++ b/exercises/intro/intro2.rs @@ -2,8 +2,6 @@ // Make the code print a greeting to the world. // Execute `rustlings hint intro2` for a hint. -// I AM NOT DONE - fn main() { - println!("Hello {}!"); + println!("Hello!"); }