I have this:
eight(minus(three())); should return 5
eight(plus(three())); should return 11
I only added two functions:
private static Func<int> Minus(
Func<int> left,
Func<int> right)
=> left - right;
private static Func<int> Plus(
Func<int> left,
Func<int> right )
=> left + right;
How can I solve the problem?