Logo

Programming-Idioms

  • C#
  • Ruby

Idiom #355 Absolute value

Assign to y the absolute value of the number n

y = n.abs
import "math"
y := math.Abs(x)

x and y have type float64

New implementation...
< >
programming-idioms.org