```nx struct Point { x, y : Float64 length() => (x ** 2 + y ** 2).sqrt() } final p = Point(3, 4) assert(p.length().~=(5, 0.01)) ```