feat(main): add initial main function with hello world

- create main.rs file
- implement basic main function with "hello world" output
This commit is contained in:
Jeremiah Russell
2025-09-30 07:56:28 +01:00
committed by Jeremiah Russell
parent b614c87408
commit 763da3145d

3
src/main.rs Normal file
View File

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