learning_rust/the_book/helloWorld.rs

4 lines
44 B
Rust
Raw Normal View History

2022-06-18 14:17:53 -05:00
fn main(){
println!("Hello, World!");
}