nvim-treesitter/tests/query/highlights/swift/range-expressions.swift

8 lines
120 B
Swift

for i in 0..<5 {
// ^ operator
print(i)
}
for i in 0...5 {
// ^ operator
print(i)
}