so I have a function named evalExpr which accepts as argument a quotation <@ ... @> and it returns a value. For example if I write
let v = evalExpr <@ 22 + 2 * 22 + 45 @>
then, v is equal to 111.
Now, I want to place inside the quotations a string variable instead of the expressions, but doing this, the variable is part of the quotation and so not defined.
How can I use variable values inside quotations in F#?