Michael Cain 84bdea68e0
Update exercises/intro/intro2.rs
Co-authored-by: Paul Scarrone <paul@scarrone.co>
2023-02-13 09:18:49 -06:00

9 lines
215 B
Rust

// intro2.rs
// Make the code print a greeting to the world.
// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a hint.
fn main() {
let world = "world";
println!("Hello {world}!");
}