abs

abs

[code=golang]
func Abs(number float64) float64 {
	return math.Abs(number)
}
[/code]