This commit is contained in:
Daniil Moiseev 2022-09-21 20:54:29 +00:00 committed by Daniil
parent 11d8aea96f
commit fe1a706cb4
2 changed files with 2 additions and 5 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,7 @@
// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn main() {
println!("Hello {}!");
let name = "Dandex";
println!("Hello {name}!");
}