feat: intro 1+2

This commit is contained in:
Naima 2022-06-08 18:08:34 +02:00
parent b19f74e8cf
commit e0c4149df2
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -2,8 +2,8 @@
// 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 {}!","world");
}