github.com/traefik/yaegi@v0.15.1/_test/method.go (about) 1 package main 2 3 type Coord struct { 4 x, y int 5 } 6 7 func (c Coord) dist() int { return c.x*c.x + c.y*c.y } 8 9 func main() { 10 o := Coord{3, 4} 11 println(o.dist()) 12 } 13 14 // Output: 15 // 25