///|
fn recip(x : Double) -> Double {
  1.0 / x
}

///|
fn recipf(x : Float) -> Float {
  (1.0 : Float) / x
}