Fable.Python
Fable.Python copied to clipboard
(unimportant issue) 'sprintf' does not format string fields in the standard(F# .NET) way
type S = S of string
let s = sprintf "%A" (S "1")
s equals to "S 1" in Fable.Python, and it is "S \"1\"" in F# .NET.