Files
collection/Makefile
Fabio Scotto di Santolo 43a5c8b244 Add new feature in collection framework:
- Implemented slice data structure
- Defined new interfaces Collection, List and Set
2023-01-08 20:04:13 +01:00

17 lines
160 B
Makefile

clean:
go clean
test:
go test -v ./...
coverage:
go test ./... -coverprofile=coverage.out
dep:
go mod download
vet:
go vet
build:
go build -o ./build