Add 'hello.rs'

This commit is contained in:
latenightz 2021-04-29 15:18:12 +00:00
parent db80249244
commit 4d7a911f8b
1 changed files with 5 additions and 0 deletions

5
hello.rs Normal file
View File

@ -0,0 +1,5 @@
// Hello World in Rust
fn main() {
println!("Hello, World!");
}