mirror of
https://github.com/rust-lang/rustlings
synced 2024-11-10 13:10:40 +00:00
6 lines
94 B
Rust
6 lines
94 B
Rust
// Make the code print a greeting to the world.
|
|
|
|
fn main() {
|
|
printline!("Hello there!")
|
|
}
|