From b32fea37cd01fb6ff84edd6727e405b5b05aa7ae Mon Sep 17 00:00:00 2001 From: "asdf-bolaji-testing[bot]" <292524059+asdf-bolaji-testing[bot]@users.noreply.github.com> Date: Tue, 30 Jun 2026 11:32:44 +0000 Subject: [PATCH] Add hello world Go app Co-authored-by: bool --- go.mod | 3 +++ main.go | 7 +++++++ 2 files changed, 10 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..3818c34 --- /dev/null +++ b/go.mod @@ -0,0 +1,3 @@ +module github.com/sourcegraph-testing/markdowns + +go 1.22 diff --git a/main.go b/main.go new file mode 100644 index 0000000..f7b60bd --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, world!") +}