()
| 5 | ) |
| 6 | |
| 7 | func ExampleValue() { |
| 8 | fmt.Println(compareValues("foo", "foo")) |
| 9 | fmt.Println(compareValues("foo", "bar")) |
| 10 | |
| 11 | // Output: |
| 12 | // (=)foo |
| 13 | // (>)bar |
| 14 | } |
| 15 | |
| 16 | func ExampleSlice() { |
| 17 | original := []interface{}{"foo"} |
nothing calls this directly
no test coverage detected