helloworld/Makefile

16 lines
176 B
Makefile
Raw Permalink Normal View History

2024-01-16 16:37:43 -06:00
all:
go build -v -x
./helloworld
push:
git add --all
git commit -a
git push
redomod:
rm -f go.*
2024-01-18 19:10:31 -06:00
goimports -w *.go
2024-01-16 16:37:43 -06:00
GO111MODULE= go mod init
GO111MODULE= go mod tidy