mirror of
https://github.com/nvim-treesitter/nvim-treesitter.git
synced 2026-07-10 23:40:04 -04:00
8 lines
120 B
Swift
8 lines
120 B
Swift
for i in 0..<5 {
|
|
// ^ operator
|
|
print(i)
|
|
}
|
|
for i in 0...5 {
|
|
// ^ operator
|
|
print(i)
|
|
}
|