From 763da3145d33f41cf78d3a76e37f7aae9ceb0a56 Mon Sep 17 00:00:00 2001 From: Jeremiah Russell Date: Tue, 30 Sep 2025 07:56:28 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(main):=20add=20initial=20main?= =?UTF-8?q?=20function=20with=20hello=20world?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - create main.rs file - implement basic main function with "hello world" output --- src/main.rs | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 src/main.rs diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..ad379d6 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("hello world"); +}