github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/gnovm/tests/files/method9.gno (about) 1 package main 2 3 type Coord struct { 4 x, y int 5 } 6 7 func main() { 8 o := Coord{3, 4} 9 println(o.dist()) 10 } 11 12 func (c Coord) dist() int { return c.x*c.x + c.y*c.y } 13 14 // Output: 15 // 25