Hi,
You've got this code in the Implement Square section of your Interfaces lesson:
type Square struct {
side int
}
func (s Square) area() int {
return s.square * s.square
}
I'm pretty sure the function should return s.side * s.side, as it does further down in the Full code.