Dennis Ritchie wrote:
        auto fact = function (int x) => x * { if (x) fact(x - 1); };

int fact (int x) { return x * ( x>1 ? fact(x - 1): 1); };

-manfred

Reply via email to