chore: remove swift tests for now (cause CI failure)

Will try to add them again in a follow up.
This commit is contained in:
Stephan Seitz 2022-01-18 21:54:18 +01:00
parent cc1890528f
commit 668de0951a
2 changed files with 0 additions and 15 deletions

View file

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

View file

@ -1,7 +0,0 @@
var one = 1
var two = 2
var name = "Let's do some math: \(one) + \(one) = \(one + one) = \(two)"
// ^ punctuation.bracket
// ^ variable
// ^ punctuation.bracket
// ^ punctuation.bracket