done introduction

This commit is contained in:
ralsei38 2022-02-10 22:37:24 +01:00
parent cd2b5e8e3b
commit 64c8423e2a
2 changed files with 2 additions and 5 deletions

View File

@ -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... "#);

View File

@ -2,8 +2,7 @@
// Make the code print a greeting to the world.
// Execute `rustlings hint intro2` for a hint.
// I AM NOT DONE
fn main() {
println!("Hello {}!");
let str_stuff = "world";
println!("Hello {}!", str_stuff);
}