function mk(n) { return x => x + n; } let add7 = mk(7); add7(10) + add7(20)