函数不返回多个值。在F#中, 可以使用元组返回多个值。让我们来看一个例子。
let TupleExample a b =
let c = a+b
let d = a-b
(c, d)
let tupleValues = TupleExample 50 10
printf "%A" tupleValues
【F#使用元组返回多个值】输出:
(60, 40)
函数不返回多个值。在F#中, 可以使用元组返回多个值。让我们来看一个例子。
let TupleExample a b =
let c = a+b
let d = a-b
(c, d)
let tupleValues = TupleExample 50 10
printf "%A" tupleValues
(60, 40)