Update exercises/intro/intro2.rs

Co-authored-by: Paul Scarrone <paul@scarrone.co>
This commit is contained in:
Michael Cain 2023-02-13 09:18:49 -06:00 committed by GitHub
parent 44c0480d5b
commit 84bdea68e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,5 +3,6 @@
// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a hint.
fn main() {
println!("Hello {}!", "world");
let world = "world";
println!("Hello {world}!");
}