Skip to content

Latest commit

 

History

History
37 lines (24 loc) · 487 Bytes

README.md

File metadata and controls

37 lines (24 loc) · 487 Bytes

Weeks

Calculate my age in weeks.

Inspired by Four Thousand Weeks by Oliver Burkeman.

Visit my blog for an overview and my learnings from this exercise.

Run

Build and run:

go run weeks.go

Build then run:

go build
./weeks

Tests

Run the tests and include % test coverage:

go test -cover 

Open test coverage in a web browser:

go test -coverprofile=c.out
go tool cover -html="c.out"