blob: 990b20f09c76de6b8d33abb966418aa1ae348091 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
// intro2.rs
//
// Make the code print a greeting to the world.
//
// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn main() {
println!("Hello {}!");
}
|