code-dumps/rust/HelloWorld.rs

7 lines
149 B
Rust
Raw Normal View History

2023-04-21 13:01:56 +08:00
fn main() {
// Statements here are executed when the compiled binary is called
// Print text to the console
println!("Hello World!");
}