From e0c4149df295f3b3fb722900771201fe9ab5beef Mon Sep 17 00:00:00 2001 From: Naima Date: Wed, 8 Jun 2022 18:08:34 +0200 Subject: [PATCH] feat: intro 1+2 --- exercises/intro/intro1.rs | 2 +- exercises/intro/intro2.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/intro/intro1.rs b/exercises/intro/intro1.rs index 1c4582de..fb82f705 100644 --- a/exercises/intro/intro1.rs +++ b/exercises/intro/intro1.rs @@ -5,7 +5,7 @@ // 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"); diff --git a/exercises/intro/intro2.rs b/exercises/intro/intro2.rs index 97a073f0..97bcac4d 100644 --- a/exercises/intro/intro2.rs +++ b/exercises/intro/intro2.rs @@ -2,8 +2,8 @@ // 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 {}!","world"); }