Compare commits
No commits in common. "fd798451f462489e2e6da648f3cd06761902d97d" and "4c51b244e560489712770e3b2f48f32ce8e11bd6" have entirely different histories.
fd798451f4
...
4c51b244e5
4 changed files with 0 additions and 26 deletions
3
go.mod
3
go.mod
|
@ -1,3 +0,0 @@
|
|||
module template
|
||||
|
||||
go 1.21.5
|
11
makefile
11
makefile
|
@ -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
|
|
@ -1,7 +0,0 @@
|
|||
package main
|
||||
|
||||
import "fmt"
|
||||
|
||||
func greet() {
|
||||
fmt.Println("Hello World!")
|
||||
}
|
|
@ -1,5 +0,0 @@
|
|||
package main
|
||||
|
||||
func main() {
|
||||
greet()
|
||||
}
|
Loading…
Reference in a new issue