let blubExtra a b = inc b |> blub (inc a)
which 2 parens less, but at the cost of using the (very idiomatic) pipe operator.
let blubExtra a b = inc b |> blub (inc a)
which 2 parens less, but at the cost of using the (very idiomatic) pipe operator.