Hello, I encountered a situation and I would like to know if there is a way to achieve it. Please take a look at my code:
var target = new Interpreter()
.SetVariable("a", 10)
.SetVariable("b", 5);
var expression = "a + b";
I would like to obtain the expression "10 + 5"