mirror of
https://github.com/rust-lang/rustlings.git
synced 2025-01-07 00:00:02 +03:00
7da4ad469a
This commit is mainly to test to see if the readme.md updates when I change it 👍
11 lines
202 B
Rust
11 lines
202 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");
|
|
}
|