1 2 3 4 5
const fn adder_factory(int x) -> fn(int) -> int: fn(int y) -> int: x + y adder_factory(2)(10) // 12