Compare commits

..

No commits in common. "fd798451f462489e2e6da648f3cd06761902d97d" and "4c51b244e560489712770e3b2f48f32ce8e11bd6" have entirely different histories.

4 changed files with 0 additions and 26 deletions

3
go.mod
View file

@ -1,3 +0,0 @@
module template
go 1.21.5

View file

@ -1,11 +0,0 @@
run:
go run src/*.go
build:
go build -o bin/main src/main.go
clean:
rm -rf bin/*
format:
go fmt src/*.go

View file

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

View file

@ -1,5 +0,0 @@
package main
func main() {
greet()
}