How to write an inline big string in F#

Viewed 1822

In C# I can use:

string myBigString = @"

<someXmlForInstance>
  <someChild />
</someXmlForInstance>

";

How to do this in F#?

3 Answers
Related