I am trying to find the F # equivalent of the following C # snippet
string.Format("A: {0} B: {1} A again: {0} C: {2}", a, b, c);
I can do it with
sprintf "A: %s B: %s A again: %s C: %s" a b a c
However, I am wondering if there is a way to refer to property a twice, as in C #.
thank
source
share