rust-introduction/00-hello_world/main.rs

3 lines
44 B
Rust
Raw Normal View History

2024-03-25 00:47:39 +01:00
fn main() {
println!("Hello, world!");
}