From 244653104a534b2a8daac43279900b8c0ac0695f Mon Sep 17 00:00:00 2001 From: Fordjent Agent Date: Thu, 21 May 2026 14:12:52 +0000 Subject: [PATCH] [agent-automation] Add hello world Go program and Makefile --- Makefile | 10 ++++++++++ main.go | 7 +++++++ 2 files changed, 17 insertions(+) create mode 100644 Makefile create mode 100644 main.go diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..de8e664 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +.PHONY: build run clean + +build: + go build -o hello main.go + +run: build + ./hello + +clean: + rm -f hello diff --git a/main.go b/main.go new file mode 100644 index 0000000..a3dd973 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello, World!") +}