rustlings/exercises/intro/intro2.rs

10 lines
175 B
Rust
Raw Normal View History

2021-04-24 20:15:34 +03:00
// intro2.rs
// Make the code print a greeting to the world.
// Execute `rustlings hint intro2` for a hint.
fn main() {
2022-05-28 03:04:58 +03:00
let n = "World";
println!("Hello {}!", n);
2021-04-24 20:15:34 +03:00
}