start from intro

This commit is contained in:
CelestialMelody 2022-06-30 15:25:28 +08:00
parent d27f5a7d41
commit 601baff618
2 changed files with 1 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,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!");
}