Completed Intro exercises

This commit is contained in:
Juan-LukeKlopper 2023-04-27 16:16:11 +02:00
parent 6d4a980b04
commit 153056eabc
2 changed files with 1 additions and 4 deletions

View File

@ -9,7 +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");

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");
}