"repeat-while" loops in Swift

Forums:

var i = 7
var f7 = 1

repeat {
    f7 *= i
    i--
while i > 0
//f7 is 5040