rust-learning/basics/hello_world.rs

4 lines
42 B
Rust
Raw Normal View History

2024-01-01 00:23:29 +03:00
fn main() {
println!("hello world!");
}