highlights(swift): add more @operators and implicit keyword

This commit is contained in:
Stephan Seitz 2022-01-16 15:36:02 +01:00
parent 8025b90329
commit cc1890528f
2 changed files with 25 additions and 1 deletions

View file

@ -0,0 +1,8 @@
for i in 0..<5 {
// ^ operator
print(i)
}
for i in 0...5 {
// ^ operator
print(i)
}