This commit is contained in:
linzell 2022-07-06 20:40:52 +02:00
parent d27f5a7d41
commit b869e37b7f
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 v = "Rust";
println!("Hello {}!", v);
}