Sign in
go
/
website
/
4fc81e6d7c05b3c955bea09c6c3ee9858ac20e4d
/
.
/
_content
/
tour
/
methods
/
methods-funcs.go
blob: 476f0cfe445addc6899e4f6fff9640d745360ad4 [
file
] [
log
] [
blame
]
// +build OMIT
package main
import (
"fmt"
"math"
)
type Vertex struct {
X, Y float64
}
func Abs(v Vertex) float64 {
return math.Sqrt(v.X*v.X + v.Y*v.Y)
}
func main() {
v := Vertex{3, 4}
fmt.Println(Abs(v))
}