V>> Func<int, int> foo = null; V>> foo = (int k) => { V>> return k == 1 ? 1 : k + foo(k - 1); V>> }; V>>