[agent-automation] Add hello world Go program and Makefile

This commit is contained in:
Fordjent Agent 2026-05-21 14:12:52 +00:00
parent 99a61a501b
commit 244653104a
2 changed files with 17 additions and 0 deletions

10
Makefile Normal file
View file

@ -0,0 +1,10 @@
.PHONY: build run clean
build:
go build -o hello main.go
run: build
./hello
clean:
rm -f hello

7
main.go Normal file
View file

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("Hello, World!")
}