I have an array:
let individualScores = [75, 43, 103, 87, 12]
And I iterate like this:
for score in individualScores {
}
However, is there a way to declare the object type explicitly? I think it would come in handy later w/ custom objects, or other reasons. Something like:
for Integer score in individualScores {
}