Home

Bug? $ strings supported in C#, but not F#

edited March 2021
var x = 1;


$"{x}".Dump();
$@"{x}".Dump()

compiles and runs just fine while

let x = 1


$"{x}".Dump()
$@"{x}".Dump()

in F# expression or program does not.

Comments

Sign In or Register to comment.