I cannot find \"do...while...\"
I have to code like this:
let bubbleSort a= let n = Array.length a let mutable swapped = true let mutable i =
let bubbleSort (a: _ []) = let mutable fin = false while not fin do fin <- true for i=0 to a.Length-2 do if a.[i] > a.[i+1] then let t = a.[i] a.[i] <- a.[i+1] a.[i+1] <- t fin <- false