1 2 3 4 5 6 7 8 9 10 11
import Swift var s: [Int] = [1, 2, 3, 4] func f() { for i in 0..<4 { print(s[i]) } } f()