rustlings/intro/intro2.rs
2024-06-23 02:38:20 -04:00

13 lines
211 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.
// I AM DONE
fn main() {
println!("Hello World!");
}