Sign in
go
/
website
/
97c56edbf39ac4976aad3862fbd48c2aaa989a9a
/
.
/
_content
/
tour
/
methods
/
methods-continued.go
blob: be9253a46f81b905ac0c5af634d568f158976973 [
file
] [
log
] [
blame
]
//go:build OMIT
package main
import (
"fmt"
"math"
)
type MyFloat float64
func (f MyFloat) Abs() float64 {
if f < 0 {
return float64(-f)
}
return float64(f)
}
func main() {
f := MyFloat(-math.Sqrt2)
fmt.Println(f.Abs())
}