update:done the intro

This commit is contained in:
catwithtudou 2023-06-18 21:43:10 +08:00
parent c2264cabae
commit e3e9fb8847
2 changed files with 2 additions and 4 deletions

View File

@ -13,8 +13,6 @@
// Execute `rustlings hint intro1` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn main() {
println!("Hello and");
println!(r#" welcome to... "#);

View File

@ -5,8 +5,8 @@
// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn main() {
println!("Hello {}!");
let world = "world";
println!("Hello {}!", world);
}