2021-04-24 18:15:34 +01:00
|
|
|
// intro2.rs
|
2023-05-29 18:39:08 +01:00
|
|
|
//
|
2021-04-24 18:15:34 +01:00
|
|
|
// Make the code print a greeting to the world.
|
2023-05-29 18:39:08 +01:00
|
|
|
//
|
|
|
|
// Execute `rustlings hint intro2` or use the `hint` watch subcommand for a
|
|
|
|
// hint.
|
2021-04-24 18:15:34 +01:00
|
|
|
|
|
|
|
// I AM NOT DONE
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
println!("Hello {}!");
|
|
|
|
}
|