F# 4.7 in LINQPad 6?

https://devblogs.microsoft.com/dotnet/announcing-f-4-7/

Seems LINQPad 6.1.3 does not support F# 4.7 by now, is there any plan to support F# 4.7 ?

let nums' = seq {
1
2
3
}

nums |> Dump

Comments

  • LINQPad uses the latest release of FSharp.Compiler.Service (currently 31.0.0, released 12 August), so it supports whatever features of F# that are in that library.
    • There is a prime ' symbol in the first declaration of nums.
    • Dump With DumpContainer
    let nums = seq {
        1
        2
        3
    }
    
    nums |> DumpContainer
    

    This will work.