标签: f#
当我运行printfn "hello"时,结果为hello(不带引号)。但是,当我跑步
printfn "hello"
hello
let mystring = "hello" printfn "%A" mystring
结果为"hello"(带引号)。为什么会这样?如何在没有引号的情况下使用格式/参数进行打印?
"hello"
答案 0 :(得分:3)
printfn "%s" "hello"
这是 Documentation 和另一个有用的 link