From 4b9cf55ff684d4bdb679481ee97a40483e45fbfb Mon Sep 17 00:00:00 2001 From: Chris Cody <3807221+aussiechris@users.noreply.github.com> Date: Sat, 8 Oct 2022 15:23:58 +1100 Subject: [PATCH] completed intro --- exercises/intro/intro1.rs | 1 - exercises/intro/intro2.rs | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/exercises/intro/intro1.rs b/exercises/intro/intro1.rs index 45c5acba..e99deae4 100644 --- a/exercises/intro/intro1.rs +++ b/exercises/intro/intro1.rs @@ -9,7 +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"); diff --git a/exercises/intro/intro2.rs b/exercises/intro/intro2.rs index efc1af20..1a2f32cc 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!"); }