I can use the for in loop in Swift through this code
for i in 0..<5
{
print ("Four multiplied by \(i) results in \(i*4)" )
}
But how do i use the for with less than ">" condition.
for i in 10>..5
{
print ("Four multiplied by \(i) results in \(i*4)" )
}
It shows error: '>' is not a postfix unary operator for i in 10>..5