What is the collection initializer syntax in F#? In C# you can write something like:
new Dictionary() { {\"One\", 1}, {\"two\", 2}} >
You can use the same :
open System.Collections.Generic Dictionary(dict [ (1, "a"); (2, "b"); (3, "c") ])
Cheers.