Compare commits

...

4 commits

3 changed files with 18 additions and 1 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

2
go.mod
View file

@ -1,3 +1,3 @@
module testbed
go 1.26
go 1.24

7
main.go Normal file
View file

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