I'm very new to Swift and trying to figure out how to count up within a for loop. For example, why doesn't something like this work? I want it to print the new age +1 12 times over......
So ultimately it would read: I am now 36 years old I am now 37 years old etc...
var myAge = 35
for _ in 1...20{
print("I am now \(myAge += 1) years old")
}