How to implement design patterns in Go?
$ go run .
$ go test ./... -v --cover
$ go test ./... -v --cover -coverprofile cover.out
$ go tool cover -html=cover.out -o cover.html
How to implement design patterns in Go?
$ go run .
$ go test ./... -v --cover
$ go test ./... -v --cover -coverprofile cover.out
$ go tool cover -html=cover.out -o cover.html