From ed6d47634b0a62ea55a4e1a2156ecf457b2583a3 Mon Sep 17 00:00:00 2001 From: NunoSempere Date: Sat, 13 Apr 2024 10:22:28 -0400 Subject: [PATCH] add hello world --- go.mod | 3 +++ main.go | 9 +++++++++ 2 files changed, 12 insertions(+) create mode 100644 go.mod create mode 100644 main.go diff --git a/go.mod b/go.mod new file mode 100644 index 0000000..647556b --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module git.nunosempere.com/NunoSempere/US-2024 + +go 1.22.1 diff --git a/main.go b/main.go new file mode 100644 index 0000000..24dcac8 --- /dev/null +++ b/main.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("Hello world") +}