From c1e44ce35b6ee22e82c72d54204ba00841e55cc0 Mon Sep 17 00:00:00 2001 From: Brian Rogers Date: Wed, 6 May 2026 21:09:53 -0600 Subject: [PATCH] obligatory hello world thing --- internal/app/main.go | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 internal/app/main.go diff --git a/internal/app/main.go b/internal/app/main.go new file mode 100644 index 0000000..d5b4957 --- /dev/null +++ b/internal/app/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Greetings Program") +}