brintos

brintos / llvm-project-archived public Read only

0
0
Text · 100 B · a1b17a9 Raw
12 lines · plain
1import Swift2 3var s: [Int] = [1, 2, 3, 4]4 5func f() {6  for i in 0..<4 {7    print(s[i])8  }9}10 11f()12