@ -18,7 +18,7 @@ date: "2019-02-06"
I'm a fan of Go's interfaces. They're really simple and don't require a lot of legwork.
{{< highlight go "linenos=table">}}
```go
type Mover interface {
func Move(x, y int) (int, int)
}