rust/src/main.rs

6 lines
112 B
Rust
Raw Normal View History

2023-11-25 17:26:53 +00:00
//! A simple program that prints "Hello, world!" to the terminal.
fn main() {
println!("Hello, world!");
}