learning_go/testing/iterations/Makefile
2025-12-20 09:59:10 +03:00

13 lines
92 B
Makefile

all: run
build:
go build -o kek
run: test
go run main.go
test:
go test
clean:
rm kek