标签: f#
我有两个字符串:
let input=Console.ReadLine() let check=""
我正在寻找一个可以连接这两个字符串的函数。我该怎么办?
答案 0 :(得分:9)
使用+运算符:
+
let both = input + check