Sha256: 3ed2642eebe57645091b4f5d01f2ac7773286dcdf915541fa9f25848ae939b92
Contents?: true
Size: 677 Bytes
Versions: 154
Compression:
Stored size: 677 Bytes
Contents
// Clock stub file // To use the right term, this is the package *clause*. // You can document general stuff about the package here if you like. package clock // The value of testVersion here must match `targetTestVersion` in the file // clock_test.go. const testVersion = 4 // Clock API as stub definitions. No, it doesn't compile yet. // More details and hints are in clock_test.go. type Clock // Complete the type definition. Pick a suitable data type. func New(hour, minute int) Clock { } func (Clock) String() string { } func (Clock) Add(minutes int) Clock { } // Remember to delete all of the stub comments. // They are just noise, and reviewers will complain.
Version data entries
154 entries across 154 versions & 1 rubygems