Create a hello world program

This commit is contained in:
Manuel Thalmann 2024-10-11 16:04:54 +02:00
parent ee6bd5e0be
commit aa6f71d657
2 changed files with 3 additions and 0 deletions

BIN
hello_world/main Executable file

Binary file not shown.

3
hello_world/main.rs Normal file
View file

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}