Compare commits

..

No commits in common. "e29e864cf939d226e8dd37c913400aa09c4479a2" and "99a61a501b51a1d23981c6f57f21fbcbe3581707" have entirely different histories.

3 changed files with 1 additions and 18 deletions

View file

@ -1,10 +0,0 @@
.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 module testbed
go 1.24 go 1.26

View file

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