Introductory exercises.

This commit is contained in:
neerajadsul 2023-08-19 11:03:24 +01:00
parent 464cb5566d
commit 23ebe6e171
2 changed files with 3 additions and 3 deletions

View File

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

View File

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