let add = fun (x Int, y Int) Int -> x + y; let succ = fun (x) -> x + 1; add(33, 34) |> fun (x) -> succ(x)