Add tasks for all the new languages
This commit is contained in:
parent
9dc3c2bb62
commit
bba7bfd280
13208 changed files with 134745 additions and 0 deletions
12
Task/FizzBuzz/Swift/fizzbuzz.swift
Normal file
12
Task/FizzBuzz/Swift/fizzbuzz.swift
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
for i in 1...100 {
|
||||
switch (i % 3, i % 5) {
|
||||
case (0, 0):
|
||||
print("FizzBuzz")
|
||||
case (0, _):
|
||||
print("Fizz")
|
||||
case (_, 0):
|
||||
print("Buzz")
|
||||
default:
|
||||
print(i)
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue