Stanislav Pankrashin 455cae6f28 finished first batch
2022-06-21 09:30:00 +12:00

8 lines
153 B
Rust

// intro2.rs
// Make the code print a greeting to the world.
// Execute `rustlings hint intro2` for a hint.
fn main() {
println!("Hello World!");
}