Add hello world Go program and Makefile #3

Merged
fjadmin merged 3 commits from implement/hello-world into main 2026-05-21 14:13:25 +00:00
2 changed files with 17 additions and 0 deletions
Showing only changes of commit 244653104a - Show all commits

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!")
}