Current progress

This commit is contained in:
2023-04-20 05:50:50 -05:00
parent 7f1754ecc5
commit 5004cc3bbb
49 changed files with 152 additions and 132 deletions
-2
View File
@@ -9,8 +9,6 @@
// when you change one of the lines below! Try adding a `println!` line, or try changing
// what it outputs in your terminal. Try removing a semicolon and see what happens!
// I AM NOT DONE
fn main() {
println!("Hello and");
println!(r#" welcome to... "#);
+1 -3
View File
@@ -2,8 +2,6 @@
// Make the code print a greeting to the world.
// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
println!("Hello {}!");
println!("Hello {}!", "world");
}