Along the lines of `io.SeekStart`, add constants to cmp to make the magic numbers more readable: ```go const ( LessThan = -1 EqualTo = 0 GreaterThan = 1 ) ```