From 77ef8a0f8c14a64099bb4b12a70599c690ffa43a Mon Sep 17 00:00:00 2001 From: Thomas Sindt Date: Mon, 23 Feb 2026 23:02:07 +0100 Subject: [PATCH] hello --- hello/go.mod | 3 +++ hello/hello.go | 7 +++++++ 2 files changed, 10 insertions(+) create mode 100644 hello/go.mod create mode 100644 hello/hello.go diff --git a/hello/go.mod b/hello/go.mod new file mode 100644 index 0000000..64acfaa --- /dev/null +++ b/hello/go.mod @@ -0,0 +1,3 @@ +module example/hello + +go 1.25.6 diff --git a/hello/hello.go b/hello/hello.go new file mode 100644 index 0000000..ce19450 --- /dev/null +++ b/hello/hello.go @@ -0,0 +1,7 @@ +package main +import "fmt" + +func main() { + fmt.Println("Hello World!") +} +