rustlings/.history/exercises/intro/intro2_20230726201812.rs
Byoungyoon Park 872a8cbcd5 20230726
2023-07-26 23:03:48 +09:00

8 lines
188 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() {
println!("Hello world!");
}