Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私が読んだことから、F# の関数はその関数の最後の行である値を返します。では、次の関数はどのように配列を返すのでしょうか?
let swap (a: _[]) x y = let tmp = a.[x] a.[x] <- a.[y] a.[y] <- tmp