Şimdiye dek sahip olduğum şey bu.Birden çok değeri nasıl döndürür ve bunları değişken değişkenlere nasıl atayabilirsiniz?
let Swap (left : int , right : int) = (right, left)
let mutable x = 5
let mutable y = 10
let (newX, newY) = Swap(x, y) //<--this works
//none of these seem to work
//x, y <- Swap(x, y)
//(x, y) <- Swap(x, y)
//(x, y) <- Swap(x, y)
//do (x, y) = Swap(x, y)
//let (x, y) = Swap(x, y)
//do (x, y) <- Swap(x, y)
//let (x, y) <- Swap(x, y)
Ben piton öğreniyorum ve biz izin verirse olabilir ne kadar soğuk F # düşünün: 'a, b <- b, a', x. [a], x. [b] <- x [b], x [a] 'Artık" takas "gerekmiyor. – colinfang