From 14afdcce4d0cc45129ce2abb8397d449c3093f0b Mon Sep 17 00:00:00 2001 From: Austin Rein Date: Sun, 28 Jun 2026 19:06:21 -0400 Subject: [PATCH] Added basic hello world files --- main.go | 7 +++++++ main.py | 1 + 2 files changed, 8 insertions(+) create mode 100644 main.go create mode 100644 main.py diff --git a/main.go b/main.go new file mode 100644 index 0000000..d2c4e91 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello world") +} diff --git a/main.py b/main.py new file mode 100644 index 0000000..6d95fe9 --- /dev/null +++ b/main.py @@ -0,0 +1 @@ +print("Hello world") \ No newline at end of file