What is the collection initializer syntax in F#? In C# you can write something like:
new Dictionary() { {\"One\", 1}, {\"two\", 2}} >
Given that the C# collection initializer syntax is syntactic sugar for calling .Add and that implies a mutable collection - I'm not sure you'll see any such syntax in F#. It's initialize all in one go as per JaredPar's answer, or do it manually.
.Add