Here's what can be done in C# -...var two = 2;
System.Linq.Expressions.Expression<System.Func<int, int>> expr = x => x * two;
expr.Compile().Invoke(4); // returns 8
...I wish to do the precise equivalent in F#. Here's what I tried, but did not compile -..