Sign in
go
/
tour
/
1c790b9f8bfefe44f33fbc9aacf5a6bc06027321
/
.
/
content
/
methods
/
methods.go
blob: 83477053a9ba31b1cd9d29f4e7c96cba01e8307f [
file
] [
log
] [
blame
]
// +build OMIT
package main
import (
"fmt"
"math"
)
type Vertex struct {
X, Y float64
}
func (v *Vertex) Abs() float64 {
return math.Sqrt(v.X*v.X + v.Y*v.Y)
}
func main() {
v := &Vertex{3, 4}
fmt.Println(v.Abs())
}