exercism/go/clock
Brian Buller 50f4a86fd8 Initial Commit 2016-08-13 18:20:14 -05:00
..
README.md Initial Commit 2016-08-13 18:20:14 -05:00
cases_test.go Initial Commit 2016-08-13 18:20:14 -05:00
clock.go Initial Commit 2016-08-13 18:20:14 -05:00
clock_test.go Initial Commit 2016-08-13 18:20:14 -05:00

README.md

Clock

Implement a clock that handles times without dates.

Create a clock that is independent of date.

You should be able to add and subtract minutes to it.

Two clocks that represent the same time should be equal to each other.

To run the tests simply run the command go test in the exercise directory.

If the test suite contains benchmarks, you can run these with the -bench flag:

go test -bench .

For more detailed info about the Go track see the help page.

Source

Pairing session with Erin Drummond view source