Come posso gestire questo errore senza creare una variabile aggiuntiva?
func reduceToZero(x:Int) -> Int {
while (x != 0) {
x = x-1 // ERROR: cannot assign to 'let' value 'x'
}
return x
}
Non voglio creare una variabile aggiuntiva solo per memorizzare il valore di x. È anche possibile fare quello che voglio?