22 lines
229 B
Go
22 lines
229 B
Go
package main
|
|
|
|
type Coord struct {
|
|
x, y int
|
|
}
|
|
|
|
func (c Coord) dist() int { return c.x*c.x + c.y*c.y }
|
|
|
|
type Point struct {
|
|
Coord
|
|
z int
|
|
}
|
|
|
|
func main() {
|
|
o := Point{Coord{3, 4}, 5}
|
|
f := o.dist
|
|
println(f())
|
|
}
|
|
|
|
// Output:
|
|
// 25
|