✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
public class Const : Expr
{
public int Value { get; }
public Const(int v)=>Value=v;
public override int Eval(Context _) => Value;
}
Чому Context ігнорується у Const.Eval?